brick-wall-shield
js
import { createIcons, icons } from 'lucide';
createIcons({ icons });
document.body.append('<i data-lucide="brick-wall-shield"></i>');
tsx
import { BrickWallShield } from 'lucide-react';
const App = () => {
return (
<BrickWallShield />
);
};
export default App;
vue
<script setup>
import { BrickWallShield } from 'lucide-vue-next';
</script>
<template>
<BrickWallShield />
</template>
svelte
<script>
import { BrickWallShield } from 'lucide-svelte';
</script>
<BrickWallShield />
tsx
import { BrickWallShield } from 'lucide-preact';
const App = () => {
return (
<BrickWallShield />
);
};
export default App;
tsx
import { BrickWallShield } from 'lucide-solid';
const App = () => {
return (
<BrickWallShield />
);
};
export default App;
tsx
// app.module.ts
import { LucideAngularModule, BrickWallShield } from 'lucide-angular';
@NgModule({
imports: [
LucideAngularModule.pick({ BrickWallShield })
],
})
// app.component.html
<lucide-icon name="brick-wall-shield"></lucide-icon>
html
<div class="icon-brick-wall-shield"></div>
See this icon in action
Bug
Feature
Brick
112
8
11