The NewCode design system
Install the library running yarn add @newcode/ui.
To import the styles the library needs:
/* _app.tsx */
import "@newcode/ui/dist/style.css";
// More imports and your App component ...To import library components:
/* pages/index.tsx */
import { Button } from "@newcode/ui";
// More imports and your Page component...