@useloops/design-system 1.4.54 → 1.4.56

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.d.ts CHANGED
@@ -575,8 +575,8 @@ declare const Switch: _emotion_styled.StyledComponent<SwitchProps & _mui_system.
575
575
  type InputFieldBaseProps = TextFieldProps$1;
576
576
 
577
577
  type TextareaProps = InputFieldBaseProps & {
578
- iconLeft?: ReactElement;
579
- iconRight?: ReactElement;
578
+ startAdornment?: ReactElement;
579
+ endAdornment?: ReactElement;
580
580
  internalChange?: () => void;
581
581
  };
582
582
  declare const Textarea: FunctionComponent<TextareaProps>;
@@ -597,8 +597,8 @@ interface TextBarDividerProps {
597
597
  declare const TextBarDivider: FunctionComponent<TextBarDividerProps>;
598
598
 
599
599
  type TextFieldProps = InputFieldBaseProps & {
600
- iconLeft?: ReactElement;
601
- iconRight?: ReactElement;
600
+ startAdornment?: ReactElement;
601
+ endAdornment?: ReactElement;
602
602
  internalChange?: () => void;
603
603
  };
604
604
  declare const TextField: FunctionComponent<TextFieldProps>;