File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -211,18 +211,17 @@ This Storybook setup includes:
211
211
212
212
## Icon Usage in Storybook
213
213
214
- In this project, the ` <i class="icon-[lucide--folder]" /> ` syntax from unplugin-icons is not supported in Storybook.
214
+ In this project, only the ` <i class="icon-[lucide--folder]" /> ` syntax from unplugin-icons is supported in Storybook.
215
215
216
216
** Example:**
217
217
218
218
``` vue
219
219
<script setup lang="ts">
220
- import { Trophy, Settings } from 'lucide-vue-next'
221
220
</script>
222
221
223
222
<template>
224
- <Trophy :size="16" class="text-neutral" />
225
- <Settings :size="16" class="text-neutral" />
223
+ <i class="icon-[lucide--trophy] text-neutral size-4 " />
224
+ <i class="icon-[lucide--settings] text-neutral size-4 " />
226
225
</template>
227
226
```
228
227
You can’t perform that action at this time.
0 commit comments