import { ForgedBlock } from '@typebot.io/forge-schemas' import { useForgedBlock } from './hooks/useForgedBlock' import { Text } from '@chakra-ui/react' export const ForgedBlockLabel = ({ type }: { type: ForgedBlock['type'] }) => { const { blockDef } = useForgedBlock(type) return {blockDef?.name} }