'use client' import type { FC } from 'react' import { cn } from '@langgenius/dify-ui/cn' import * as React from 'react' type Props = Readonly<{ label: string description?: string }> const Label: FC = ({ label, description, }) => { return (
{label}
{description && (
{description}
)}
) } export default React.memo(Label)