
To use Tabler icons in your project, install the official React package:
npm i @iconify-icon/react Import and use any icon in your components:
import { Icon } from '@iconify/react';
function MyComponent() {
return <Icon icon='solar:arrow-right-linear' width='20' height='20' />;
}