Skip to content

rat

mouse • mice • gerbil • rodent • pet • pest • plague • disease

Created:

v0.141.0

Last changed:

v0.233.0

Contributors:

henri42jguddaskarsa-mistmeredanielbayley
html
<i data-lucide="rat"></i>
tsx
import { Rat } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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