play-off
html
<script>
import { createIcons, playOff } from 'lucide';
createIcons({
icons: {
playOff
}
});
</script>
<i data-lucide="play-off"></i>
tsx
import { PlayOff } from 'lucide-react';
const App = () => {
return (
<PlayOff />
);
};
export default App;
vue
<script setup>
import { PlayOff } from '@lucide/vue';
</script>
<template>
<PlayOff />
</template>
svelte
<script>
import { PlayOff } from 'lucide-svelte';
</script>
<PlayOff />
tsx
import { PlayOff } from 'lucide-preact';
const App = () => {
return (
<PlayOff />
);
};
export default App;
tsx
import { PlayOff } from 'lucide-solid';
const App = () => {
return (
<PlayOff />
);
};
export default App;
tsx
// app.module.ts
import { LucideAngularModule, PlayOff } from 'lucide-angular';
@NgModule({
imports: [
LucideAngularModule.pick({ PlayOff })
],
})
// app.component.html
<lucide-icon name="play-off"></lucide-icon>
html
<div class="icon-play-off"></div>
See this icon in action
Bug
Feature
Play
112
8
11