Skip to content

shield-lock

antivirus • authentication • authorization • credentials • cybersecurity • data protection • defense • encryption • guard • login • password • privacy • safeguard • ssl • tls • two-factor authentication • verification • vpn

Created:

v1.30.0

Last changed:

v1.30.0

Contributors:

caiserekarsa-mistmere
html
<script>
import { createIcons, shieldLock } from 'lucide';

createIcons({
  icons: {
    shieldLock
  }
});
</script>

<i data-lucide="shield-lock"></i>  
tsx
import { ShieldLock } from 'lucide-react';

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

export default App;
vue
<script setup>
import { ShieldLock } from '@lucide/vue';
</script>

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="shield-lock"></lucide-icon>
html
<div class="icon-shield-lock"></div>

See this icon in action

Bug
Feature
Shield
112
8
11