shadcn-vue/apps/www/src/lib/registry/new-york/example/ToggleDemo.vue
zernonia 02fe76d1f0
refactor: replace iconify icons with @radix-icons/vue for newyork style (#87)
* refactor: changes all instance of unplugin-icons to radix-icons

* chore: build registry

* test: fix new deps
2023-09-27 12:26:24 +08:00

12 lines
254 B
Vue

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