Your ImageYour Image
  • About
  • Templates10
  • Blocks81New
  • Icons1635
  • Graphics4K
  • Components107New
  • About
  • Components
  • Pricing
  • Contact
Book an Intro call
Book an Intro call
  • About
  • Works
  • Pricing
  • Templates
  • Blocks
  • components
  • Graphic
  • Backgrounds
  • Designs
  • Icons
  • Logos
  • Flags
  • Privacy
  • Terms
  • Contact
© 2025Made with by Ali Imam

  • Introduction
  • Installation

Installation

PreviousNext

Beautiful, open-source icon library built for modern React and Tailwind apps.

Installation Icons

pnpm add @aliimam/icons

Installation Logos

pnpm add @aliimam/logos

How to use

AI is built with ES Modules, so it's completely tree-shakable.

Each icon can be imported as a React component, which renders an inline SVG element. This way, only the icons that are imported into your project are included in the final bundle. The rest of the icons are tree-shaken away.

Example Icons

Additional props can be passed to adjust the icon:

import { MoonStar } from "@aliimam/icons";
 
// Usage
const App = () => {
  return <MoonStar size={48} />;
};
 
export default App;

Example Logos

Additional props can be passed to adjust the icon:

import { Apple } from "@aliimam/logos";
 
// Usage
const App = () => {
  return <Apple size={48} />;
};
 
export default App;

Props Icons

nametypedefault
sizenumber24
colorstringcurrentColor
strokeWidthnumber1

Props Logos

nametypedefault
sizenumber24
colorstringcurrentColor
IntroductionContact

On This Page

Installation IconsInstallation LogosHow to useExample IconsExample LogosProps IconsProps Logos