@mindly/ui-components 3.74.0 → 3.75.0

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.
@@ -185,3 +185,5 @@ export { default as Refresher } from './lib/Refresher';
185
185
  export * from './lib/Refresher';
186
186
  export { default as Toast } from './lib/Toast';
187
187
  export * from './lib/Toast';
188
+ export { default as CustomRadioButton } from './lib/Inputs/CustomRadioButton';
189
+ export * from './lib/Inputs/CustomRadioButton';
@@ -0,0 +1,10 @@
1
+ import React, { ChangeEvent } from 'react';
2
+ declare type CustomRadioButtonProps = {
3
+ label: string;
4
+ name?: string;
5
+ value?: string;
6
+ checked?: boolean;
7
+ onChange?: (e: ChangeEvent<HTMLInputElement>) => void;
8
+ };
9
+ declare const CustomRadioButton: React.ForwardRefExoticComponent<CustomRadioButtonProps & React.RefAttributes<HTMLInputElement>>;
10
+ export default CustomRadioButton;
@@ -0,0 +1 @@
1
+ export declare const RadioButtonLabel: import("styled-components").StyledComponent<"label", any, {}, never>;
@@ -0,0 +1 @@
1
+ export { default } from './CustomRadioButton';