ingred-ui 14.0.0 → 14.1.0

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,6 +1,6 @@
1
1
  import * as React from "react";
2
2
  import * as Styled from "./styled";
3
- export type BadgeColor = "primary" | "secondary" | "success" | "warning" | "danger";
3
+ export type BadgeColor = "primary" | "secondary" | "success" | "warning" | "danger" | "basic";
4
4
  export type BadgeProps = React.ComponentPropsWithoutRef<"a" | "span"> & {
5
5
  color: BadgeColor;
6
6
  type?: Styled.BadgeType;
@@ -19,3 +19,4 @@ export declare const Secondary: StoryObj<typeof Badge>;
19
19
  export declare const Success: StoryObj<typeof Badge>;
20
20
  export declare const Warning: StoryObj<typeof Badge>;
21
21
  export declare const Danger: StoryObj<typeof Badge>;
22
+ export declare const Basic: StoryObj<typeof Badge>;