import { useTranslation } from 'react-i18next' type CloseProps = { onDismiss: React.MouseEventHandler variant?: 'light' | 'dark' } function Close({ onDismiss, variant = 'light' }: CloseProps) { const { t } = useTranslation() return ( ) } export default Close