Skip to content

shield-question-mark

unshielded • cybersecurity • insecure • unsecured • safety • unsafe • protection • unprotected • guardian • unguarded • unarmored • unarmoured • defenseless • defenceless • undefended • defender • threat • prevention • unprevented • antivirus • vigilance • vigilant • detection • undetected • scan • find • exploit • vulnerability • vulnerable • weakness • infection • comprimised • data leak • audit • admin • verification • unverified • uncertified • uncertain • unknown • inactive • crest • question mark • ?

Created:

v0.171.0

Last changed:

v0.518.0

Contributors:

danielbayleyjguddaskarsa-mistmere
js
import { createIcons, icons } from 'lucide';

createIcons({ icons });

document.body.append('<i data-lucide="shield-question-mark"></i>');  
tsx
import { ShieldQuestionMark } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

See this icon in action

Bug
Feature
Shield
112
8
11