import Typography from "../atoms/Typography";

export interface DescriptionProps {
  label: string;
  children: string;
}

export default function Description({
  label,
  children,
}: DescriptionProps) {
  return (
    <div className="fl-flex fl-flex-col fl-space-y-2">
      <Typography theme="primary" intent="small">
        {label}
      </Typography>
      <Typography>{children}</Typography>
    </div>
  );
}
