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

Skip to content

hexagons-3

lab

honeycomb • beeswax • cells • cluster • tessellation • pollen • pollinate

Contributors:

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

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

<i data-lucide="hexagons-3"></i>  
tsx
import { Icon } from 'lucide-react';
import { hexagons3 } from '@lucide/lab';

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

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

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

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

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

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

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

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

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

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

看看这个图标的实际效果

错误
功能
Hexagons
112
8
11