@kroo-web/design-system 1.0.28 → 1.0.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.MD +2 -0
- package/dist/cjs/icons/index.d.ts +0 -1
- package/dist/cjs/index.js +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/product/components/Button/button.stories.d.ts +4 -0
- package/dist/cjs/product/components/Button/index.d.ts +9 -8
- package/dist/cjs/product/components/Callout/Callout.stories.d.ts +10 -0
- package/dist/cjs/product/components/Callout/Callout.test.d.ts +1 -0
- package/dist/cjs/product/components/Callout/index.d.ts +12 -0
- package/dist/cjs/product/components/Typography/index.d.ts +3 -3
- package/dist/cjs/product/components/Typography/typography.stories.d.ts +6 -4
- package/dist/esm/icons/index.d.ts +0 -1
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/product/components/Button/button.stories.d.ts +4 -0
- package/dist/esm/product/components/Button/index.d.ts +9 -8
- package/dist/esm/product/components/Callout/Callout.stories.d.ts +10 -0
- package/dist/esm/product/components/Callout/Callout.test.d.ts +1 -0
- package/dist/esm/product/components/Callout/index.d.ts +12 -0
- package/dist/esm/product/components/Typography/index.d.ts +3 -3
- package/dist/esm/product/components/Typography/typography.stories.d.ts +6 -4
- package/dist/styles/tokens/marketing.css +3 -0
- package/dist/types.d.ts +11 -10
- package/package.json +1 -1
package/README.MD
CHANGED
|
@@ -28,6 +28,8 @@ This adds the tokens used in the design system to the root of the application. (
|
|
|
28
28
|
|
|
29
29
|
```jsx
|
|
30
30
|
import '@kroo-web/design-system/dist/styles/global.css';
|
|
31
|
+
// For using the icons package
|
|
32
|
+
import 'react-material-symbols/rounded';
|
|
31
33
|
```
|
|
32
34
|
|
|
33
35
|
That's all folks! You can now use the components in the design system in your application.
|