* docs: improve the api reference of all the components * docs(app): #152 add new-york theme This pull request is intended to add the new-york theme for the newly created component examples. Closes: #152 * chore: build registry * chore: change usage of lucide icon in new-york --------- Co-authored-by: zernonia <zernonia@gmail.com>
13 lines
274 B
Vue
13 lines
274 B
Vue
<script setup lang="ts">
|
|
import { FontItalicIcon } from '@radix-icons/vue'
|
|
|
|
import { Toggle } from '@/lib/registry/new-york/ui/toggle'
|
|
</script>
|
|
|
|
<template>
|
|
<Toggle aria-label="Toggle italic">
|
|
<FontItalicIcon class="w-4 h-4 mr-2" />
|
|
Italic
|
|
</Toggle>
|
|
</template>
|