import { CloseButton, CloseButtonProps } from 'react-bootstrap-5' import { useTranslation } from 'react-i18next' import { forwardRef } from 'react' const OLCloseButton = forwardRef( (props, ref) => { const { t } = useTranslation() return } ) OLCloseButton.displayName = 'OLCloseButton' export default OLCloseButton