shield-check
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>