Skip to content

brick-wall

bricks • mortar • cement • materials • construction • builder • labourer • quantity surveyor • blocks • stone

Created:

v0.299.0

Last changed:

v0.299.0

Contributors:

karsa-mistmeredanielbayley
html
<i data-lucide="brick-wall"></i>
tsx
import { BrickWall } from 'lucide-react';

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

export default App;
vue
<script setup>
  import { BrickWall } from 'lucide-vue-next';
</script>

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="brick-wall"></lucide-icon>
html
<style>
@import ('~lucide-static/font/Lucide.css');
</style>

<div class="icon-brick-wall"></div>