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

Skip to content

pilcrow-right

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

创建时间:

v0.365.0

最后修改:

v0.365.0

Contributors:

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

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

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

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

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

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

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

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

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

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

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

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

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

看看这个图标的实际效果

错误
功能
Pilcrow
112
8
11