Skip to content

spotlight

winner • soapbox • stage • entertainment • drama • podium • actor • actress • singer • light • beam • play • theatre • show • focus • concert • performance • lens • leaderboard • followspot • best • highlight

Created:

v0.527.0

Last changed:

v0.527.0

Contributors:

chessurismejguddaskarsa-mistmereericfennis
js
import { createIcons, icons } from 'lucide';

createIcons({ icons });

document.body.append('<i data-lucide="spotlight"></i>');  
tsx
import { Spotlight } from 'lucide-react';

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

export default App;
vue
<script setup>
import { Spotlight } from 'lucide-vue-next';
</script>

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

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

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

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

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

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

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

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

See this icon in action

Bug
Feature
Spotlight
112
8
11