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