import React from 'react'; import {Box, Text} from 'ink'; import figures from 'figures'; export type Props = { readonly isSelected?: boolean; }; function Indicator({isSelected = false}: Props) { return ( {isSelected ? ( {figures.pointer} ) : ( )} ); } export default Indicator;