gitextract_exwwbg6a/ ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .npmignore ├── .prettierignore ├── .prettierrc ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── next-env.d.ts ├── next.config.js ├── package.json ├── page-components/ │ ├── Alert.jsx │ ├── Button.jsx │ ├── Checkbox.jsx │ ├── Header.jsx │ ├── Link.jsx │ ├── SelectContainer.jsx │ └── TailwindColors.jsx ├── pages/ │ ├── _app.js │ └── index.js ├── postcss.config.js ├── rollup.config.js ├── src/ │ ├── components/ │ │ ├── DisabledItem.tsx │ │ ├── GroupItem.tsx │ │ ├── Icons.tsx │ │ ├── Item.tsx │ │ ├── Options.tsx │ │ ├── SearchInput.tsx │ │ ├── Select.tsx │ │ ├── SelectProvider.tsx │ │ ├── Spinner.tsx │ │ └── type.ts │ ├── constants/ │ │ └── index.ts │ ├── hooks/ │ │ └── use-onclick-outside.ts │ ├── index.css │ └── index.tsx ├── tailwind.config.js └── tsconfig.json