import { Group, RadioItem } from './shared' import { DashStyle } from 'types' import state from 'state' import { ChangeEvent } from 'react' function handleChange(e: ChangeEvent) { state.send('CHANGED_STYLE', { dash: e.currentTarget.value, }) } interface Props { dash: DashStyle } export default function DashPicker({ dash }: Props) { return ( ) } function DashSolidIcon() { return ( ) } function DashDashedIcon() { return ( ) } function DashDottedIcon() { return ( ) }