shadcn-vue/apps/www/registry/new-york/example/ToggleLargeDemo.vue
2024-11-21 11:52:31 +08:00

12 lines
268 B
Vue

<script setup lang="ts">
import { Toggle } from '@/lib/registry/new-york/ui/toggle'
import { FontItalicIcon } from '@radix-icons/vue'
</script>
<template>
<Toggle size="lg" aria-label="Toggle italic">
<FontItalicIcon class="w-4 h-4" />
</Toggle>
</template>