Skip to content

text

find • search • data • txt • pdf • document

Created:

v0.140.0

Last changed:

v0.140.0

Contributors:

danielbayleykarsa-mistmere
html
<i data-lucide="text"></i>
tsx
import { Text } from 'lucide-react';

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

export default App;
vue
<script setup>
  import { Text } from 'lucide-vue-next';
</script>

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="text"></lucide-icon>
html
<style>
@import ('~lucide-static/font/Lucide.css');
</style>

<div class="icon-text"></div>