@kroo-web/design-system 1.18.6 → 1.19.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.
@@ -16,3 +16,4 @@ export declare const IconsAndText: Story;
16
16
  export declare const ActionButtonsIconAndText: Story;
17
17
  export declare const NavButtonVariants: Story;
18
18
  export declare const NavButtonsIcon: Story;
19
+ export declare const FullWidthExamples: Story;
@@ -19,7 +19,8 @@ type TButtonOwnProps = {
19
19
  as?: 'button' | 'span';
20
20
  className?: string;
21
21
  onlyIcon?: boolean;
22
+ fullWidth?: boolean | [boolean, boolean?, boolean?];
22
23
  } & PropsWithChildren & React.ButtonHTMLAttributes<HTMLButtonElement> & TButtonVisualTypes;
23
24
  export type TButtonProps<T extends React.ElementType = typeof defaultElement> = PolymorphicPropsWithoutRef<TButtonOwnProps, T>;
24
- export declare function Button<T extends React.ElementType = typeof defaultElement>({ as, children, className, onlyIcon, variant, visualType, ...rest }: TButtonProps<T>): import("react/jsx-runtime").JSX.Element;
25
+ export declare function Button<T extends React.ElementType = typeof defaultElement>({ as, children, className, onlyIcon, variant, visualType, fullWidth, ...rest }: TButtonProps<T>): import("react/jsx-runtime").JSX.Element;
25
26
  export {};