Skip to content

bug-play

debug • code • insect

Created:

v0.270.0

Last changed:

v0.360.0

Contributors:

danielbayleyjguddas
html
<i data-lucide="bug-play"></i>
tsx
import { BugPlay } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-bug-play"></div>