gitextract_4soe0rfr/ ├── .gitignore ├── .prettierrc ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── lerna.json ├── meta-data.json ├── package.json ├── packages/ │ ├── iconsax-react/ │ │ ├── .babelrc │ │ ├── .npmignore │ │ ├── README.md │ │ ├── package.json │ │ └── rollup.config.js │ └── iconsax-react-native/ │ ├── .babelrc │ ├── .npmignore │ ├── README.md │ ├── package.json │ └── rollup.config.js ├── scripts/ │ ├── build.js │ ├── fetchIcon.js │ └── generateIcons.js └── website/ ├── .eslintrc.json ├── .prettierrc ├── .vscode/ │ └── settings.json ├── Containers/ │ └── IconContainer.tsx ├── components/ │ ├── Header.tsx │ ├── IconColor.tsx │ ├── IconCustomizer.tsx │ ├── IconItem.tsx │ ├── IconList.tsx │ ├── IconSearch.tsx │ ├── IconSize.tsx │ ├── IconVariant.tsx │ ├── RainbowButton.tsx │ ├── SelectedIcon.tsx │ ├── Selector.tsx │ └── index.ts ├── hooks/ │ ├── index.ts │ ├── useDebounce.ts │ ├── useOnClickOutside.ts │ ├── useTimeoutFn.ts │ └── useWindowSize.ts ├── lib/ │ └── icons.ts ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages/ │ ├── _app.tsx │ ├── _document.tsx │ ├── api/ │ │ └── hello.ts │ └── index.tsx ├── postcss.config.js ├── public/ │ ├── browserconfig.xml │ └── site.webmanifest ├── store/ │ ├── IconContext.tsx │ ├── iconReducer.ts │ ├── index.ts │ ├── searchState.ts │ └── selectedStore.ts ├── styles/ │ └── globals.css ├── tailwind.config.js └── tsconfig.json