Files
shadcn-ui/apps/www/components/examples/typography/lead.tsx
2023-01-24 19:51:29 +04:00

9 lines
223 B
TypeScript

export function TypographyLead() {
return (
<p className="text-xl text-slate-700 dark:text-slate-400">
A modal dialog that interrupts the user with important content and expects
a response.
</p>
)
}