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