Skip to content

Latest commit

 

History

History
44 lines (31 loc) · 1.13 KB

README.md

File metadata and controls

44 lines (31 loc) · 1.13 KB

@untitled-theme/icons-react

Untitled UI icons for React.

Screenshot

Installation

npm install @untitled-theme/icons-react

Usage

import {Rocket01Icon} from '@untitled-theme/icons-react';

function Component() {
  return <Rocket01Icon />;
}

or

import Rocket01Icon from '@untitled-theme/icons-react/Rocket01Icon';

function Component() {
  return <Rocket01Icon />;
}

If you are using Next.js, we recommend adding it to optimizePackageImports for performance. You can read more about it here.

// next.config.js
module.exports = {
  experimental: {
    optimizePackageImports: ['@untitled-theme/icons-react'],
  },
};

See all icons here