Skip to content

scan-box

ar • augmented reality • 3d • object detection • object recognition • tracking • spatial computing • capture • cube • bounding box • camera • frame • shape • boundary • lidar • depth • scanning • mapping • placement

Created:

v1.25.0

Last changed:

v1.25.0

Contributors:

wojtekmajericfenniskarsa-mistmere
html
<script>
import { createIcons, scanBox } from 'lucide';

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

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

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

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

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

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

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

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

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

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

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

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

See this icon in action

Bug
Feature
Scan
112
8
11