finform-react-builder 1.8.0 → 1.8.2

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.
@@ -1,12 +1,7 @@
1
1
  import { default as React } from 'react';
2
- export type FinGuidelineCardVariant = 'info' | 'infoWithHeader' | 'error' | 'emphasis';
3
2
  export interface FinGuidelineCardProps {
4
- variant: FinGuidelineCardVariant;
5
- title?: React.ReactNode;
6
- description?: React.ReactNode;
7
- icon?: React.ReactNode;
8
- actions?: React.ReactNode;
9
- sx?: any;
10
- items?: string[];
3
+ listItems?: string[];
4
+ variant?: "info" | "infoWithHeader" | "error" | "emphasis";
11
5
  }
12
- export declare const FinGuidelineCard: React.FC<FinGuidelineCardProps>;
6
+ declare const FinGuidelineCard: React.FC<FinGuidelineCardProps>;
7
+ export default FinGuidelineCard;