Skip to content

shield-plus

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 • extra • added • professional • enterprise • full • maximum • upgraded • ultra • activate • enable • audit • admin • verification • crest • medic • +

Created:

v0.273.0

Last changed:

v0.340.0

Contributors:

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

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

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

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

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

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

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

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

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

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

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

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