shadcn-vue/apps/www/src/lib/registry/new-york/example/ToggleDisabledDemo.vue
selemondev 9422d17e8e 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
2023-11-09 10:45:27 +03:00

12 lines
256 B
Vue

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