@equal-experts/kuat-react 0.9.2 → 0.10.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.
@@ -20,6 +20,10 @@ export interface ContentCardProps extends Omit<React.HTMLAttributes<HTMLDivEleme
20
20
  /** Footer slot. */
21
21
  footer?: KuatSlotContent | null;
22
22
  children?: KuatSlotContent;
23
+ /** Width behavior for the root card container. */
24
+ width?: "default" | "fluid" | "custom";
25
+ /** Used when `width` is `custom`; accepts CSS max-width values. */
26
+ maxWidth?: React.CSSProperties["maxWidth"];
23
27
  }
24
28
  declare const ContentCard: React.ForwardRefExoticComponent<ContentCardProps & React.RefAttributes<HTMLDivElement>>;
25
29
  export { ContentCard };