Skip to content

rabbit

animal • rodent • pet • pest • bunny • hare • fast • speed • hop

Created:

v0.264.0

Last changed:

v0.303.0

Contributors:

danielbayley
html
<i data-lucide="rabbit"></i>
tsx
import { Rabbit } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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