@secondstaxorg/sscomp 2.0.27 → 2.0.29
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.es.js +61 -32
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +2027 -1985
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +50 -21
- package/dist/index.min.js.map +1 -1
- package/package.json +1 -1
- package/types/components/IconButton/IconButton.d.ts +3 -0
- package/types/components/IconButton/style.d.ts +1 -0
- package/types/components/IconButton/type.d.ts +8 -0
- package/types/components/index.d.ts +1 -0
package/package.json
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const Button: import("styled-components").StyledComponent<"button", any, {}, never>;
|
|
@@ -86,3 +86,4 @@ export { default as MultipleFileUpload } from './MultipleFileUpload/MultipleFile
|
|
|
86
86
|
export { default as AmountInput } from './AmountInput/AmountInput';
|
|
87
87
|
export { default as ForgotPasswordForm } from './ForgotPasswordForm/ForgotPasswordForm';
|
|
88
88
|
export { default as SetPassword } from './SetPassword/SetPassword';
|
|
89
|
+
export { default as IconButton } from './IconButton/IconButton';
|