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

Skip to content

bell-concierge-dot

lab

reception • bellboy • bellhop • porter • service • summon • hospitality • hotel • accommodation • attention • alert • ring • ding • sound • reminder • unread • pending • updates

Contributors:

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

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

<i data-lucide="bell-concierge-dot"></i>  
tsx
import { Icon } from 'lucide-react';
import { bellConciergeDot } from '@lucide/lab';

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

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

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

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

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

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

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

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

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

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

看看这个图标的实际效果

错误
功能
Bell
112
8
11