Skip to content

locate-square

lab

gps • location • crosshair • inspector • element • selector • target • box • browser • dom • node • aim • target • scope • sight • reticule

Contributors:

csandmanericfenniskarsa-mistmere
js
import { createIcons, icons } from 'lucide';
import { locateSquare } from '@lucide/lab';

createIcons({
  icons: {
    locateSquare
  }
});

document.body.append('<i data-lucide="locate-square"></i>');  
tsx
import { Icon } from 'lucide-react';
import { locateSquare } from '@lucide/lab';

const App = () => {
  return (
    <Icon iconNode={locateSquare} />
  );
};

export default App;
vue
<script setup>
import { Icon } from 'lucide-vue-next';
import { locateSquare } from '@lucide/lab';
</script>

<template>
  <Icon :iconNode="locateSquare" />
</template>
svelte
<script>
import { Icon } from 'lucide-svelte';
import { locateSquare } from '@lucide/lab';
</script>

<Icon iconNode={locateSquare} />
tsx
import { Icon } from 'lucide-preact';
import { locateSquare } from '@lucide/lab';

const App = () => {
  return (
    <Icon iconNode={locateSquare} />
  );
};

export default App;
tsx
import { Icon } from 'lucide-solid';
import { locateSquare } from '@lucide/lab';

const App = () => {
  return (
    <Icon iconNode={locateSquare} />
  );
};

export default App;
tsx
// app.module.ts
import { LucideAngularModule } from 'lucide-angular';
import { locateSquare } from '@lucide/lab';

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

// app.component.html
<lucide-icon name="locateSquare"></lucide-icon>

See this icon in action

Bug
Feature
Locate
112
8
11