@kroo-web/design-system 1.0.25 → 1.0.26

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.
@@ -1,4 +1,6 @@
1
- # Kroo Web Component Lib / Design system
1
+ # Kroo Blicks Design System
2
+
3
+ <i> A design system for Kroo, Blicks is a merge of the two words blocks and bricks coined by Tom Parsons in our morning standup.</i>
2
4
 
3
5
  ## Usage
4
6
 
@@ -0,0 +1 @@
1
+ import '@testing-library/jest-dom/vitest';
@@ -0,0 +1,14 @@
1
+ import { StoryObj } from "@storybook/react";
2
+ import { Icon } from ".";
3
+ declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react").ReactRenderer, {
4
+ size?: "large" | "regular" | "xlarge" | undefined;
5
+ weight?: "medium" | "normal" | "light" | undefined;
6
+ } & Omit<import("react-material-symbols").MaterialSymbolProps, "size" | "weight">>;
7
+ export default _default;
8
+ type Story = StoryObj<typeof Icon>;
9
+ /**
10
+ * Iconography docs can be found [here](https://fonts.google.com/icons)
11
+ */
12
+ export declare const Default: Story;
13
+ export declare const Sizes: Story;
14
+ export declare const Weights: Story;
@@ -0,0 +1,8 @@
1
+ import React from "react";
2
+ import { MaterialSymbolProps } from "react-material-symbols";
3
+ import "react-material-symbols/rounded";
4
+ export type TIconProps = {
5
+ size?: "regular" | "large" | "xlarge";
6
+ weight?: "light" | "normal" | "medium";
7
+ } & Omit<MaterialSymbolProps, "size" | "weight">;
8
+ export declare const Icon: ({ size, weight, ...rest }: TIconProps) => React.JSX.Element;
@@ -1 +1,2 @@
1
1
  export * from './product/components';
2
+ export * from "./icons";