Skip to content

anchor

ship

Created:

v0.0.0

Last changed:

v0.325.0

Contributors:

colebemiscsandmanericfennis
html
<i data-lucide="anchor"></i>
tsx
import { Anchor } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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