pilcrow-right
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-next';
</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>
See this icon in action
Bug
Feature
Pilcrow
112
8
11