import { useTranslation } from 'react-i18next' import MaterialIcon from '@/shared/components/material-icon' import BootstrapVersionSwitcher from '@/features/ui/components/bootstrap-5/bootstrap-version-switcher' type CloseProps = { onDismiss: React.MouseEventHandler variant?: 'light' | 'dark' } function Close({ onDismiss, variant = 'light' }: CloseProps) { const { t } = useTranslation() return ( ) } export default Close