'use client' import type { FC } from 'react' import React from 'react' import cn from '@/utils/classnames' type Props = { label: string description?: string } const Label: FC = ({ label, description, }) => { return (
{label}
{description && (
{description}
)}
) } export default React.memo(Label)