Lucide V1 发布了!🚀
你现在浏览的是 v1 站点,如需查看 v0,请前往 v0 站点

Skip to content

anchor

ship

创建时间:

v0.0.0

最后修改:

v0.554.0

Contributors:

colebemiscsandmanericfenniskarsa-mistmere
html
<script>
import { createIcons, anchor } from 'lucide';

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

<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';
</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
<div class="icon-anchor"></div>

看看这个图标的实际效果

错误
功能
Anchor
112
8
11