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