Skip to content

locate-fixed

map • gps • location • cross

Created:

v0.12.0

Last changed:

v0.12.0

Contributors:

ericfenniskarsa-mistmere
html
<i data-lucide="locate-fixed"></i>
tsx
import { LocateFixed } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-locate-fixed"></div>
dart
Icon(LucideIcons.locate-fixed);