HeadingSmall.tsx 315 B

12345678
  1. export function HeadingSmall({ title, description }: { title: string; description?: string }) {
  2. return (
  3. <header>
  4. <h3 className="mb-0.5 text-base font-medium">{title}</h3>
  5. {description && <p className="text-sm text-muted-foreground">{description}</p>}
  6. </header>
  7. );
  8. }