@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 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.
@@ -1,6 +1,5 @@
1
1
  import React from "react";
2
2
  import { MaterialSymbolProps } from "react-material-symbols";
3
- import "react-material-symbols/rounded";
4
3
  export type TIconProps = {
5
4
  size?: "regular" | "large" | "xlarge";
6
5
  weight?: "light" | "normal" | "medium";