Skip to content

shield-half

cybersecurity • secure • safety • protection • guardian • armored • armoured • defense • defence • defender • block • threat • prevention • antivirus • vigilance • vigilant • detection • scan • strength • strong • tough • invincible • invincibility • invulnerable • undamaged • audit • admin • verification • crest • logo • sigil • flag • team • faction • fraternity • university • college • academy • school • education • uniform • bravery • knight • foot soldier • infantry • trooper • pawn • battle • war • military • ranking • army • cadet • scout

Created:

v0.273.0

Last changed:

v0.340.0

Contributors:

danielbayleykarsa-mistmere
html
<i data-lucide="shield-half"></i>
tsx
import { ShieldHalf } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-shield-half"></div>