7 lines
251 B
JavaScript
7 lines
251 B
JavaScript
import * as React from 'react';
|
|
import { Text } from 'ink';
|
|
function Item({ isSelected = false, label }) {
|
|
return React.createElement(Text, { color: isSelected ? 'blue' : undefined }, label);
|
|
}
|
|
export default Item;
|
|
//# sourceMappingURL=Item.js.map
|