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