Skip to content

scan

qr-code • barcode • checkout • augmented reality • ar • target • surveillance • camera • lens • focus • frame • select • box • boundary • bounds • area • square • dashed

Created:

v0.16.22

Last changed:

v0.18.0

Contributors:

wojtekmajericfennis
html
<i data-lucide="scan"></i>
tsx
import { Scan } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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