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

Skip to content

construction

roadwork • maintenance • blockade • barricade

创建时间:

v0.116.0

最后修改:

v0.150.0

Contributors:

karsa-mistmereericfennisjguddas
html
<script>
import { createIcons, construction } from 'lucide';

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

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

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

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

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

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

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

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

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

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

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

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

看看这个图标的实际效果

错误
功能
Construction
112
8
11