Svelte components for the Stellar design system.
npm install @nasa-jpl/svelte-stellar @nasa-jpl/stellar --save
More detailed usage examples can be found on the examples page (implementation).
Before usage make sure you import the base Stellar CSS files. For example if you need everything:
<script lang="ts">
import '@nasa-jpl/stellar/css/index.css';
import '@nasa-jpl/stellar/font/inter/inter.css';
// ...
</script>
<script lang="ts">
import { Button } from '../lib/index.js';
</script>
<Button>Primary</Button>