Getting Started
Installing cds-design
Install Continuum Design System using your favorite package manager
pnpm install cds-design
Load needed components
import { load } from "cds-design"; // or import load from "cds-design"
load("button", "input", "checkbox");
For More components see Components
Usage
<script type="module">
import { load } from "https://esm.run/cds-design" // or import load from "https://esm.run/cds-design"
load("button", "input", "checkbox")
</script>
<cds-button>Click Me</cds-button>
Thats it! You are ready to use Continuum Design System