Lucide V1 发布了!🚀
你现在浏览的是 v1 站点,如需查看 v0,请前往 v0 站点

Skip to content

wand

magic • selection

创建时间:

v0.16.14

最后修改:

v0.391.0

Contributors:

mittalyashuericfennis
html
<script>
import { createIcons, wand } from 'lucide';

createIcons({
  icons: {
    wand
  }
});
</script>

<i data-lucide="wand"></i>  
tsx
import { Wand } from 'lucide-react';

const App = () => {
  return (
    <Wand />
  );
};

export default App;
vue
<script setup>
import { Wand } from '@lucide/vue';
</script>

<template>
  <Wand />
</template>
svelte
<script>
import { Wand } from 'lucide-svelte';
</script>

<Wand />
tsx
import { Wand } from 'lucide-preact';

const App = () => {
  return (
    <Wand />
  );
};

export default App;
tsx
import { Wand } from 'lucide-solid';

const App = () => {
  return (
    <Wand />
  );
};

export default App;
tsx
// app.module.ts
import { LucideAngularModule, Wand } from 'lucide-angular';

@NgModule({
  imports: [
    LucideAngularModule.pick({ Wand })
  ],
})

// app.component.html
<lucide-icon name="wand"></lucide-icon>
html
<div class="icon-wand"></div>

看看这个图标的实际效果

错误
功能
Wand
112
8
11