Skip to content

shield-check

cybersecurity • secured • safety • protection • protected • guardian • guarded • armored • armoured • defense • defence • defended • blocked • threat • prevention • prevented • antivirus • vigilance • vigilant • active • activated • enabled • detection • scanned • found • strength • strong • tough • invincible • invincibility • invulnerable • undamaged • audited • admin • verification • verified • certification • certified • tested • passed • qualified • cleared • cleaned • disinfected • uninfected • task • completed • todo • done • ticked • checked • crest • bravery

Created:

v0.14.0

Last changed:

v0.340.0

Contributors:

mittalyashuericfenniskarsa-mistmere
html
<i data-lucide="shield-check"></i>
tsx
import { ShieldCheck } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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