import { Alert, AlertIcon, AlertProps, Button, HStack, Text, useDisclosure, } from '@chakra-ui/react' import React from 'react' import { ChangePlanModal } from '@/features/billing/components/ChangePlanModal' import { useI18n } from '@/locales' type Props = { contentLabel: React.ReactNode buttonLabel?: string type?: string } & AlertProps export const UnlockPlanAlertInfo = ({ contentLabel, buttonLabel, type, ...props }: Props) => { const t = useI18n() const { isOpen, onOpen, onClose } = useDisclosure() return ( {contentLabel} ) }