mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-07 14:08:47 +00:00
12 lines
305 B
TypeScript
12 lines
305 B
TypeScript
import { Checkbox } from "@/styles/base-nova/ui/checkbox"
|
|
import { Label } from "@/styles/base-nova/ui/label"
|
|
|
|
export default function LabelDemo() {
|
|
return (
|
|
<div className="flex gap-2">
|
|
<Checkbox id="terms" />
|
|
<Label htmlFor="terms">Accept terms and conditions</Label>
|
|
</div>
|
|
)
|
|
}
|