Skip to content

r3dDoX/design-system-showcase

Repository files navigation

Design System Showcase

Installation

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";

Usage

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';

Font

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.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published