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

Skip to content

feather-plus

lab

quill • pen • write • writing • prose • inkwell • scribe • scroll • draft • new • add • +

html
<script>
import { createIcons } from 'lucide';
import { featherPlus } from '@lucide/lab';

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

<i data-lucide="feather-plus"></i>  
tsx
import { Icon } from 'lucide-react';
import { featherPlus } from '@lucide/lab';

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

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

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

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

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

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

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

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

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

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

看看这个图标的实际效果

错误
功能
Feather
112
8
11