import * as Checkbox from '@radix-ui/react-checkbox' import { CheckIcon } from '@radix-ui/react-icons' import { strokes } from 'state/shape-styles' import { Square } from 'react-feather' import { IconWrapper, RowButton } from '../shared' interface Props { isFilled: boolean onChange: (isFilled: boolean | string) => void } export default function IsFilledPicker({ isFilled, onChange, }: Props): JSX.Element { return ( {isFilled || } ) }