import * as DropdownMenu from '@radix-ui/react-dropdown-menu' import { strokes } from 'state/shape-styles' import { ColorStyle } from 'types' import { RowButton, IconWrapper } from '../shared' import { Square } from 'react-feather' import ColorContent from './color-content' interface Props { color: ColorStyle onChange: (color: ColorStyle) => void } export default function ColorPicker({ color, onChange }: Props): JSX.Element { return ( ) }