Skip to content

text-wrap

words • lines • break • paragraph

Created:

v0.16.16

Last changed:

v0.543.0

Contributors:

bduffanyericfenniskarsa-mistmere
js
import { createIcons, icons } from 'lucide';

createIcons({ icons });

document.body.append('<i data-lucide="text-wrap"></i>');  
tsx
import { TextWrap } from 'lucide-react';

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

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

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="text-wrap"></lucide-icon>
html
<div class="icon-text-wrap"></div>

See this icon in action

Bug
Feature
Text
112
8
11