UNPKG

ink-select-input

Version:
7 lines 251 B
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