Skip to content

twitch

logo • social

Created:

v0.0.0

Last changed:

v0.1.0-alpha.0

Contributors:

ahtohbi4johnletey
html
<i data-lucide="twitch"></i>
tsx
import { Twitch } from 'lucide-react';

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

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

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="twitch"></lucide-icon>
html
<style>
@import ('~lucide-static/font/Lucide.css');
</style>

<div class="icon-twitch"></div>