Skip to content

Commit

Permalink
marked optinal arguments of signature
Browse files Browse the repository at this point in the history
  • Loading branch information
valeriia-ruban committed Mar 14, 2024
1 parent 01cf92a commit a94da44
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/components/src/components/hds/card/container.ts
Expand Up @@ -17,12 +17,12 @@ export const AVAILABLE_OVERFLOWS: string[] = Object.values(OverflowValues);

export interface HdsCardContainerSignature {
Args: {
level: Level;
levelActive: Level;
levelHover: Level;
background: Background;
overflow: Overflow;
hasBorder: boolean;
level?: Level;
levelActive?: Level;
levelHover?: Level;
background?: Background;
overflow?: Overflow;
hasBorder?: boolean;
};
Element: HTMLDivElement;
}
Expand Down

0 comments on commit a94da44

Please sign in to comment.