
Tabler Icons
We use Tabler icons for React throughout the app.- Installation
- Props
- Props
Custom Icons
In addition to Tabler icons, the app also uses some custom icons.Icon Address Book
Displays an address book icon.- Usage
- Props

yarn add @tabler/icons-react
import { IconArrowLeft } from "@tabler/icons-react";
export const MyComponent = () => {
return <IconArrowLeft color="red" size={48} />;
};
| 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 |
import { IconAddressBook } from 'twenty-ui/display';
export const MyComponent = () => {
return <IconAddressBook size={24} stroke={2} />;
};
| 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 |
Cette page vous a-t-elle été utile ?