@secondstaxorg/sscomp 2.0.95 → 2.0.96

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@secondstaxorg/sscomp",
3
- "version": "2.0.95",
3
+ "version": "2.0.96",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/"
6
6
  },
@@ -0,0 +1,2 @@
1
+ export declare const MainContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
2
+ export declare const SelectorItem: import("styled-components").StyledComponent<"button", any, {}, never>;
@@ -0,0 +1,15 @@
1
+ import React from "react";
2
+ export interface ConsentCheckboxProps {
3
+ /**
4
+ * Callback function passing out a true or false when the item is clicked or not
5
+ */
6
+ onChange: (a: boolean) => void;
7
+ /**
8
+ * Content for the checkbox
9
+ */
10
+ children: React.ReactNode;
11
+ /**
12
+ * Initial state of the checkbox
13
+ */
14
+ isChecked?: boolean;
15
+ }