@kroo-web/design-system 1.31.0 → 1.32.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.
@@ -9,5 +9,6 @@ export declare const AllLevels: Story;
9
9
  export declare const AllSizes: Story;
10
10
  export declare const AllWeights: Story;
11
11
  export declare const AllFonts: Story;
12
+ export declare const Accent: Story;
12
13
  export declare const CustomSize: Story;
13
14
  export declare const SemanticVsVisual: Story;
@@ -15,5 +15,9 @@ interface HeadingStandardProps extends BaseHeadingProps {
15
15
  level: 3 | 4 | 5 | 6;
16
16
  }
17
17
  type HeadingProps = HeadingDisplayProps | HeadingStandardProps;
18
- export declare const Heading: React.ForwardRefExoticComponent<HeadingProps & React.RefAttributes<HTMLHeadingElement>>;
18
+ export declare const Heading: React.ForwardRefExoticComponent<HeadingProps & React.RefAttributes<HTMLHeadingElement>> & {
19
+ Accent: ({ children }: {
20
+ children: React.ReactNode;
21
+ }) => import("react/jsx-runtime").JSX.Element;
22
+ };
19
23
  export {};