@thecb/components 10.12.0 → 10.12.1-beta.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.
package/dist/index.d.ts CHANGED
@@ -576,10 +576,8 @@ declare const ButtonWithLink: React.FC<Expand<ButtonWithLinkProps> &
576
576
  React.HTMLAttributes<HTMLElement>>;
577
577
 
578
578
  interface CardProps {
579
- text?: string | React.ReactNode;
580
- textAs?: string;
579
+ text?: string;
581
580
  titleText?: string;
582
- titleAs?: string;
583
581
  titleVariant?: string;
584
582
  extraStyles?: string;
585
583
  imgSrc?: string;
@@ -603,10 +601,6 @@ interface CardProps {
603
601
  borderRadius?: string;
604
602
  width?: string;
605
603
  padding?: string;
606
- showQuitLink?: boolean;
607
- onQuitClick?: (
608
- event: React.MouseEvent<HTMLElement> | React.TouchEvent<HTMLElement>
609
- ) => void;
610
604
  }
611
605
 
612
606
  declare const Card: React.FC<Expand<CardProps> &