@contentmunch/contentmunch-ui 1.1.24 → 1.1.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.
@@ -14,6 +14,7 @@ export interface AccordionProps {
14
14
  */
15
15
  variant?: Variant;
16
16
  collapsed?: boolean;
17
+ className?: string;
17
18
  }
18
19
  export interface Fold {
19
20
  heading: string;
@@ -6,6 +6,7 @@ export interface BackdropProps {
6
6
  * Show and hide backdrop
7
7
  */
8
8
  show?: boolean;
9
+ className?: string;
9
10
  /**
10
11
  * backdrop click handler
11
12
  */
@@ -7,6 +7,7 @@ export type ButtonTypes = 'button' | 'submit' | 'reset' | 'nav';
7
7
  export interface AllButtonProps {
8
8
  variant?: Variant;
9
9
  size?: Size;
10
+ className?: string;
10
11
  /**
11
12
  * button title, corresponds to title on hover
12
13
  */