Skip to content

shield-question

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.340.0

Contributors:

danielbayleyjguddaskarsa-mistmere
html
<i data-lucide="shield-question"></i>
tsx
import { ShieldQuestion } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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