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

Skip to content

bottle-toothbrush-comb

lab

toiletries • bathroom • amenities • shower gel • bubble bath • shampoo • conditioner • toothpaste • tube • clean • wash • brush

Contributors:

danielbayley
html
<script>
import { createIcons } from 'lucide';
import { bottleToothbrushComb } from '@lucide/lab';

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

<i data-lucide="bottle-toothbrush-comb"></i>  
tsx
import { Icon } from 'lucide-react';
import { bottleToothbrushComb } from '@lucide/lab';

const App = () => {
  return (
    <Icon iconNode={bottleToothbrushComb} />
  );
};

export default App;
vue
<script setup>
import { Icon } from 'lucide-vue-next';
import { bottleToothbrushComb } from '@lucide/lab';
</script>

<template>
  <Icon :iconNode="bottleToothbrushComb" />
</template>
svelte
<script>
import { Icon } from 'lucide-svelte';
import { bottleToothbrushComb } from '@lucide/lab';
</script>

<Icon iconNode={bottleToothbrushComb} />
tsx
import { Icon } from 'lucide-preact';
import { bottleToothbrushComb } from '@lucide/lab';

const App = () => {
  return (
    <Icon iconNode={bottleToothbrushComb} />
  );
};

export default App;
tsx
import { Icon } from 'lucide-solid';
import { bottleToothbrushComb } from '@lucide/lab';

const App = () => {
  return (
    <Icon iconNode={bottleToothbrushComb} />
  );
};

export default App;
tsx
// app.module.ts
import { LucideAngularModule } from 'lucide-angular';
import { bottleToothbrushComb } from '@lucide/lab';

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

// app.component.html
<lucide-icon name="BottleToothbrushComb"></lucide-icon>

看看这个图标的实际效果

错误
功能
Bottle
112
8
11