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