import clsx from 'clsx' import type { ComponentPropsWithoutRef, FC } from 'react' import { XIcon } from '../../icons' import styles from './RemoveButton.module.css' export type RemoveButtonVariant = 'transparent' | 'solid' export type RemoveButtonSize = 'sm' | 'md' type Props = ComponentPropsWithoutRef<'button'> & { variant?: RemoveButtonVariant size?: RemoveButtonSize } export const RemoveButton: FC = ({ className, variant = 'transparent', size = 'sm', 'aria-label': ariaLabel = 'Remove', ...props }) => { return ( ) }