Lucide V1 发布了!🚀
你现在浏览的是 v1 站点,如需查看 v0,请前往 v0 站点

Skip to content

paint-roller

brush • color • colour • decoration • diy

创建时间:

v0.310.0

最后修改:

v0.310.0

Contributors:

danielbayleykarsa-mistmere
html
<script>
import { createIcons, paintRoller } from 'lucide';

createIcons({
  icons: {
    paintRoller
  }
});
</script>

<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';
</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
<div class="icon-paint-roller"></div>

看看这个图标的实际效果

错误
功能
Paint
112
8
11