Skip to content

scan-face

face • biometric • identification • authentication • 2fa • access • login • dashed

Created:

v0.82.0

Last changed:

v0.82.0

Contributors:

karsa-mistmere
html
<i data-lucide="scan-face"></i>
tsx
import { ScanFace } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-scan-face"></div>