Skip to content

scan-eye

preview • zoom • expand • fullscreen • gallery • image • camera • watch • surveillance • retina • focus • lens • biometric • identification • authentication • access • login

Created:

v0.283.0

Last changed:

v0.283.0

Contributors:

danielbayley
html
<i data-lucide="scan-eye"></i>
tsx
import { ScanEye } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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