Skip to content

scan-square

scan • square • detect • recognition • select • frame • object • viewfinder • capture • shape • boundary • camera • scanner • overlay • focus • crop • marker

Created:

v0.0.0

Last changed:

v0.0.0

Contributors:

samuelalake
html
<script>
import { createIcons, scanSquare } from 'lucide';

createIcons({
  icons: {
    scanSquare
  }
});
</script>

<i data-lucide="scan-square"></i>  
tsx
import { ScanSquare } from 'lucide-react';

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

export default App;
vue
<script setup>
import { ScanSquare } from '@lucide/vue';
</script>

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="scan-square"></lucide-icon>
html
<div class="icon-scan-square"></div>

See this icon in action

Bug
Feature
Scan
112
8
11