html
<script>
import { createIcons, textCursor } from 'lucide';
createIcons({
icons: {
textCursor
}
});
</script>
<i data-lucide="text-cursor"></i>
tsx
import { TextCursor } from 'lucide-react';
const App = () => {
return (
<TextCursor />
);
};
export default App;
vue
<script setup>
import { TextCursor } from 'lucide-vue-next';
</script>
<template>
<TextCursor />
</template>
svelte
<script>
import { TextCursor } from 'lucide-svelte';
</script>
<TextCursor />
tsx
import { TextCursor } from 'lucide-preact';
const App = () => {
return (
<TextCursor />
);
};
export default App;
tsx
import { TextCursor } from 'lucide-solid';
const App = () => {
return (
<TextCursor />
);
};
export default App;
tsx
// app.module.ts
import { LucideAngularModule, TextCursor } from 'lucide-angular';
@NgModule({
imports: [
LucideAngularModule.pick({ TextCursor })
],
})
// app.component.html
<lucide-icon name="text-cursor"></lucide-icon>
html
<div class="icon-text-cursor"></div>
See this icon in action
Bug
Feature
Text
112
8
11