@pl-pluto/ui
v1.8.0
Published
## @pl-pluto/ui
Readme
@pl-pluto/ui
Install
yarn add @pl-pluto/uiSetup
- Import the css file in the root of your application
- Use your theme class with a theming library
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 (
<ThemeProvider attribute="class" value={themeClasses}>
{Component}
</ThemeProvider>
);
}
