跳转到内容

mop

cleaning • sweeping • scrubbing • housekeeping • hygiene • sanitation • chores • swab • tidy • floor • janitor • maintenance • wash • wipe • spotless • pristine • disinfect

创建时间:

v1.33.0

最后修改:

v1.33.0

Contributors:

karsa-mistmere
html
<script>
import { createIcons, Mop } from 'lucide';

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

<i data-lucide="mop"></i>  
tsx
import { Mop } from 'lucide-react';

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

export default App;
vue
<script setup>
import { Mop } from '@lucide/vue';
</script>

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="mop"></lucide-icon>
html
<div class="icon-mop"></div>

看看这个图标的实际效果

错误
功能
Mop
112
8
11