To use this package install it via:
npm install design-systems-showcase
Additionally to set up the proper CSS variables, you need to import the provided style.css
file in your project.
@import "design-system-showcase/style.css";
To use all components, you can import the index.js
file in your project:
import 'design-system-showcase';
If you want to lazy load the components where you need them, you can import the individual components:
import 'design-system-showcase/src/components/button/button.component';
We recommend using the Inter font in your project. You can either install it as a package or use it over a CDN as described in the linke above.
If you installed the package, declaring it in CSS would look like this:
@font-face {
font-family: "Inter";
font-weight: 100 900;
font-display: swap;
src: url("inter-ui/Inter (web)/Inter.var.woff2?v=3.19") format("woff2-variations");
}
html {
font-family: Inter, sans-serif !important;
}
This uses the variable font version of Inter, which is smaller in size and provides more flexibility.