kiva-protocol-ui-kit 1.0.35 → 1.0.39

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.
@@ -0,0 +1,11 @@
1
+ /* purgecss start ignore */
2
+ @tailwind base;
3
+ @tailwind components;
4
+ /* purgecss end ignore */
5
+ @tailwind utilities;
6
+
7
+ /* purgecss start ignore */
8
+ /* @import 'tailwindcss/base';
9
+ @import 'tailwindcss/components'; */
10
+ /* purgecss end ignore */
11
+ /* @import 'tailwindcss/utilities'; */
@@ -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 ConsentCardProps {
6
+ export interface Props {
7
7
  title: string;
8
8
  agreement: string;
9
9
  pii: Array<string>;
10
10
  back: string;
11
11
  accept: string;
12
12
  }
13
- export declare const ConsentCard: FunctionComponent<ConsentCardProps>;
13
+ export declare const ConsentCard: FunctionComponent<Props>;
package/build/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
+ import './common/index.tailwind.scss';
1
2
  export { ActionCard } from "./action-card/ActionCard";
2
3
  export { Button } from "./button/Button";
3
4
  export { Alert } from "./alert/Alert";