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

Skip to content

flashlight

torch • light • beam • emergency • safety • tool • bright

创建时间:

v0.1.0-alpha.0

最后修改:

v0.556.0

Contributors:

csandmanericfennisjamiemlaw
html
<script>
import { createIcons, flashlight } from 'lucide';

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

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

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

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

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

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

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

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

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

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

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

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

看看这个图标的实际效果

错误
功能
Flashlight
112
8
11