@bigbinary/neetoui 4.4.18 → 4.4.19

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/index.d.ts CHANGED
@@ -150,6 +150,7 @@ export interface ButtonProps {
150
150
  size?: "small" | "medium" | "large";
151
151
  href?: string;
152
152
  tooltipProps?: TooltipProps;
153
+ children?: string;
153
154
  [key: string]: any;
154
155
  }
155
156
 
@@ -169,6 +170,7 @@ export type CheckboxProps = {
169
170
  required?: false;
170
171
  id?: string;
171
172
  labelProps?: LabelProps;
173
+ children?: string;
172
174
  } & React.DetailedHTMLProps<
173
175
  React.InputHTMLAttributes<HTMLInputElement>,
174
176
  HTMLInputElement
@@ -341,6 +343,7 @@ export type SwitchProps = {
341
343
  checked?: boolean;
342
344
  disabled?: boolean;
343
345
  labelProps?: LabelProps;
346
+ children?: string;
344
347
  } & React.DetailedHTMLProps<
345
348
  React.InputHTMLAttributes<HTMLInputElement>,
346
349
  HTMLInputElement
@@ -395,6 +398,7 @@ export interface TagProps {
395
398
  color?: string;
396
399
  /** @deprecated Prop deprecated. Use `indicatorStyle` prop instead*/
397
400
  indicatorColor?: string;
401
+ children:string;
398
402
  }
399
403
 
400
404
  export type TextareaProps = {