import { Group, Item } from '../shared' import * as RadioGroup from '@radix-ui/react-radio-group' import { Circle } from 'react-feather' import state from 'state' import { SizeStyle } from 'types' function handleChange(size: string) { state.send('CHANGED_STYLE', { size }) } export default function SizePicker({ size }: { size: SizeStyle }): JSX.Element { return ( ) }