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

Skip to content

pilcrow-left

direction • paragraph • mark • paraph • blind • typography • type • text • prose • symbol

创建时间:

v0.365.0

最后修改:

v0.365.0

Contributors:

zaaakherdanielbayleyjonas-hoebenreich
html
<script>
import { createIcons, pilcrowLeft } from 'lucide';

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

<i data-lucide="pilcrow-left"></i>  
tsx
import { PilcrowLeft } from 'lucide-react';

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

export default App;
vue
<script setup>
import { PilcrowLeft } from '@lucide/vue';
</script>

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="pilcrow-left"></lucide-icon>
html
<div class="icon-pilcrow-left"></div>

看看这个图标的实际效果

错误
功能
Pilcrow
112
8
11