mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-02 17:08:39 +00:00
10 lines
266 B
TypeScript
10 lines
266 B
TypeScript
export function TypographyList() {
|
|
return (
|
|
<ul className="my-6 ml-6 list-disc [&>li]:mt-2">
|
|
<li>1st level of puns: 5 gold coins</li>
|
|
<li>2nd level of jokes: 10 gold coins</li>
|
|
<li>3rd level of one-liners : 20 gold coins</li>
|
|
</ul>
|
|
)
|
|
}
|