@useloops/design-system 1.4.220 → 1.4.222

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
@@ -503,7 +503,7 @@ interface IconProps {
503
503
  color?: string;
504
504
  name: IconName;
505
505
  size?: number;
506
- sx?: SxProps;
506
+ sx?: SxProps<Theme>;
507
507
  }
508
508
  declare const Icon: FunctionComponent<IconProps>;
509
509
 
@@ -877,7 +877,7 @@ declare const Avatar: FunctionComponent<AvatarProps>;
877
877
  interface AvatarGroupProps extends AvatarGroupProps$1 {
878
878
  variation?: 'primary';
879
879
  max?: number;
880
- sx: SxProps;
880
+ sx: SxProps<Theme>;
881
881
  }
882
882
  declare const AvatarGroup: FunctionComponent<AvatarGroupProps>;
883
883
 
@@ -956,7 +956,7 @@ interface CheckboxGroupProps {
956
956
  declare const CheckboxGroup: FunctionComponent<CheckboxGroupProps>;
957
957
 
958
958
  interface ColorBackgroundContainerProps {
959
- sx?: SxProps;
959
+ sx?: SxProps<Theme>;
960
960
  children: ContainerProps['children'];
961
961
  texture?: 'none' | 'noise1';
962
962
  gradient?: 'tone1' | 'tone2' | 'tone3' | 'tone4';
@@ -1583,7 +1583,7 @@ type TextareaProps = InputFieldBaseProps & {
1583
1583
  declare const Textarea: FunctionComponent<TextareaProps>;
1584
1584
 
1585
1585
  interface TextBarDividerProps {
1586
- sx?: SxProps;
1586
+ sx?: SxProps<Theme>;
1587
1587
  typographyProps?: Partial<TypographyProps>;
1588
1588
  text: string;
1589
1589
  }