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