Skip to content

paint-roller

brush • color • colour • decoration • diy

Created:

v0.310.0

Last changed:

v0.310.0

Contributors:

danielbayleykarsa-mistmere
html
<i data-lucide="paint-roller"></i>
tsx
import { PaintRoller } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-paint-roller"></div>