shadcn-vue/apps/www/registry/default/example/ToggleItalicWithTextDemo.vue
2024-11-21 11:52:31 +08:00

13 lines
256 B
Vue

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