@uob-web-and-digital/component-library 2.4.2 → 2.4.3

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.
@@ -4,7 +4,7 @@ import './cardModuleCard.scss';
4
4
  export interface CardModuleCardProps {
5
5
  theme: ThemeProps;
6
6
  title: string;
7
- creditCount: string;
7
+ creditCount?: string;
8
8
  href: string;
9
9
  titleTag?: 'h2' | 'h3';
10
10
  }
@@ -11,3 +11,4 @@ declare const meta: {
11
11
  export default meta;
12
12
  type Story = StoryObj<typeof CardModuleCard>;
13
13
  export declare const Example: Story;
14
+ export declare const WithoutCreditCount: Story;