```bash yarn add @pl-pluto/ui ```
npm install @pl-pluto/ui``bash`
yarn add @pl-pluto/ui
- Import the css file in the root of your application
- Use your theme class with a theming library
`typescript jsx
import '@pl-pluto/ui/dist/index.css';
import { themeClasses } from '@pl-pluto/ui';
import { ThemeProvider } from 'next-themes';
export default function MyApp({ Component, pageProps }) {
return (
{Component}
);
}
``