14 lines
344 B
Vue
14 lines
344 B
Vue
<script setup lang="ts">
|
|
import { Checkbox } from '@/lib/registry/new-york/ui/checkbox'
|
|
import { Label } from '@/lib/registry/new-york/ui/label'
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<div class="flex items-center space-x-2">
|
|
<Checkbox id="terms" />
|
|
<Label for="terms">Accept terms and conditions</Label>
|
|
</div>
|
|
</div>
|
|
</template>
|