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