---
title: Text Icons
description: Replace Jodit SVG toolbar icons with text labels.
keywords: text icons, text toolbar, icon replacement
---

# Text Icons

Replace SVG icons to text

Include Jodit

```html
<link rel="stylesheet" href="build/jodit.min.css" />
<script src="build/jodit.min.js"></script>
```

Create input element

```html
<textarea id="editor"></textarea>
```

Init Jodit

```javascript
const editor = Jodit.make('#editor', {
	textIcons: true
});
```

## Result

```html
<!-- Example Start -->
<textarea id="editor"></textarea>

<script>
	const editor = Jodit.make('#editor', {
		textIcons: true
	});
</script>
<!-- Example End -->
```
