---
title: Icons
icon: "icons"
---
A list of icons used throughout our app.
## Tabler Icons
We use Tabler icons for React throughout the app.
```
yarn add @tabler/icons-react
```
You can import each icon as a component. Here's an example:
```jsx
import { IconArrowLeft } from "@tabler/icons-react";
export const MyComponent = () => {
return ;
};
```
| Props | Type | Description | Default |
|-------|------|-------------|--------|
| size | number | The height and width of the icon in pixels | 24 |
| color | string | The color of the icons | currentColor |
| stroke | number | The stroke width of the icon in pixels | 2 |
## Custom Icons
In addition to Tabler icons, the app also uses some custom icons.
### Icon Address Book
Displays an address book icon.
```jsx
import { IconAddressBook } from 'twenty-ui/display';
export const MyComponent = () => {
return ;
};
```
| Props | Type | Description | Default |
|-------|------|-------------|--------|
| size | number | The height and width of the icon in pixels | 24 |
| stroke | number | The stroke width of the icon in pixels | 2 |