import {TabProvider, TabContent, TabList, TabTrigger} from "@components/Tabs"; import {Code} from "@/components/LoadedCode"; # Installation Using CLI Manual Install 1. Install [TailwindCSS](https://tailwindcss.com/docs/installation) and [tailwind-merge](https://github.com/dhiwise/tailwind-merge) and configure it yourself. 2. Add import alias for `@pswui-lib` in your `tsconfig.json` file. {`{\n "compilerOptions": {\n "paths": {\n "@pswui-lib": ["./pswui/lib.tsx"]\n }\n }\n}`} 3. Install [@psw-ui/cli](https://www.npmjs.com/package/@psw-ui/cli). {`$ npm install \@psw-ui/cli\n$ yarn add @psw-ui/cli\n$ pnpm add @psw-ui/cli`} 4. Run CLI to add components {`$ npx pswui add \n$ yarn pswui add \n$ pnpm pswui add `} 5. Import component, and use it. 1. Install [TailwindCSS](https://tailwindcss.com/docs/installation) and [tailwind-merge](https://github.com/dhiwise/tailwind-merge) and configure it yourself. 2. Add import alias for `@pswui-lib` in your `tsconfig.json` file. {`{\n "compilerOptions": {\n "paths": {\n "@pswui-lib": [""]\n }\n }\n}`} 3. Grab the library file from [here](https://raw.githubusercontent.com/pswui/ui/main/packages/react/lib.tsx) and put it in the library file path in the tsconfig. 4. Now you can copy & paste your component in your project.