import { Alert, AlertIcon, AlertProps, Button, HStack, Text, useDisclosure, } from '@chakra-ui/react' import React from 'react' import { UpgradeModal } from './modals/UpgradeModal' import { LimitReached } from './modals/UpgradeModal/UpgradeModal' export const Info = (props: AlertProps) => ( {props.children} ) export const PublishFirstInfo = (props: AlertProps) => ( You need to publish your typebot first ) export const UnlockProPlanInfo = ({ contentLabel, buttonLabel, type, }: { contentLabel: string buttonLabel: string type?: LimitReached }) => { const { isOpen, onOpen, onClose } = useDisclosure() return ( {contentLabel} ) }