kiva-protocol-ui-kit 1.0.41 → 1.0.48

Sign up to get free protection for your applications and to get access to all the features.
@@ -3,11 +3,11 @@ import "./ConsentCard.scss";
3
3
  import "../typography.scss";
4
4
  import "../variables.scss";
5
5
  import 'bootstrap/dist/css/bootstrap.min.css';
6
- export interface Props {
6
+ export interface ConsentCardProps {
7
7
  title: string;
8
8
  agreement: string;
9
- pii: Array<string>;
9
+ pii: any;
10
10
  back: string;
11
11
  accept: string;
12
12
  }
13
- export declare const ConsentCard: FunctionComponent<Props>;
13
+ export declare const ConsentCard: FunctionComponent<ConsentCardProps>;