import clsx from 'clsx' import { ReactNode } from 'react' export function PillButton(props: { selected: boolean onSelect: () => void color?: string big?: boolean children: ReactNode }) { const { children, selected, onSelect, color, big } = props return ( ) }