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

Skip to content

bear-face

lab

cub • cuddle • children • kids • toys • teddy • nursery • picnic • outdoors • wilderness • forest • national park • open season • hunting • grizzly • warning • danger • strength • mammal • 🐻 • 🧸

Contributors:

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

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

<i data-lucide="bear-face"></i>  
tsx
import { Icon } from 'lucide-react';
import { bearFace } from '@lucide/lab';

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

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

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

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

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

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

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

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

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

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

看看这个图标的实际效果

错误
功能
Bear
112
8
11