@gataca/design-system 0.3.69 → 0.3.71

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.
@@ -58,6 +58,7 @@ export { default as PaymentMethodIcon } from './native/Icons/icons/withSelectedS
58
58
  export { default as StarIcon } from './native/Icons/icons/withSelectedState/star';
59
59
  export { default as SubscriptionsIcon } from './native/Icons/icons/withSelectedState/subscriptions';
60
60
  export { default as StampIcon } from './native/Icons/icons/withSelectedState/stamp';
61
+ export { default as SquareIcon } from './native/Icons/icons/withSelectedState/square';
61
62
  export { default as SettingsIcon } from './native/Icons/icons/withSelectedState/settings';
62
63
  export { default as ServicesLinkedV2Icon } from './native/Icons/icons/withSelectedState/servicesLinkedV2';
63
64
  export { default as ShieldCheckIcon } from './native/Icons/icons/withSelectedState/shieldCheck';
@@ -53,6 +53,7 @@ export { default as PaymentMethodIcon } from './web/Icons/icons/withSelectedStat
53
53
  export { default as StarIcon } from './web/Icons/icons/withSelectedState/star';
54
54
  export { default as SubscriptionsIcon } from './web/Icons/icons/withSelectedState/subscriptions';
55
55
  export { default as StampIcon } from './web/Icons/icons/withSelectedState/stamp';
56
+ export { default as SquareIcon } from './web/Icons/icons/withSelectedState/square';
56
57
  export { default as SettingsIcon } from './web/Icons/icons/withSelectedState/settings';
57
58
  export { default as ServicesLinkedV2Icon } from './web/Icons/icons/withSelectedState/servicesLinkedV2';
58
59
  export { default as ShieldCheckIcon } from './web/Icons/icons/withSelectedState/shieldCheck';
@@ -0,0 +1,8 @@
1
+ import { IconSize, IconStyle } from '../../icon_types';
2
+ type SquareIconProps = {
3
+ size: IconSize;
4
+ color?: string;
5
+ style: IconStyle;
6
+ };
7
+ declare const SquareIcon: (props: SquareIconProps) => import("react/jsx-runtime").JSX.Element;
8
+ export default SquareIcon;
@@ -31,6 +31,7 @@ export { default as ArrowLeftDiagonalCircleIcon } from './icons/withSelectedStat
31
31
  export { default as ArrowUpDiagonalCircleIcon } from './icons/withSelectedState/arrowUpDiagonalCircle';
32
32
  export { default as ProfileIcon } from './icons/withSelectedState/profile';
33
33
  export { default as BellIcon } from './icons/withSelectedState/bell';
34
+ export { default as SquareIcon } from './icons/withSelectedState/square';
34
35
  export { default as CheckIcon } from './icons/check';
35
36
  export { default as InfoIcon } from './icons/info';
36
37
  export { default as ChevronDownIcon } from './icons/chevronDown';
@@ -0,0 +1,8 @@
1
+ import { IconSize, IconStyle } from '../../icon_types';
2
+ type SquareIconProps = {
3
+ size: IconSize;
4
+ color?: string;
5
+ style: IconStyle;
6
+ };
7
+ declare const SquareIcon: (props: SquareIconProps) => import("react/jsx-runtime").JSX.Element;
8
+ export default SquareIcon;
@@ -31,6 +31,7 @@ export { default as ArrowLeftDiagonalCircleIcon } from './icons/withSelectedStat
31
31
  export { default as ArrowUpDiagonalCircleIcon } from './icons/withSelectedState/arrowUpDiagonalCircle';
32
32
  export { default as ProfileIcon } from './icons/withSelectedState/profile';
33
33
  export { default as BellIcon } from './icons/withSelectedState/bell';
34
+ export { default as SquareIcon } from './icons/withSelectedState/square';
34
35
  export { default as CheckIcon } from './icons/check';
35
36
  export { default as InfoIcon } from './icons/info';
36
37
  export { default as ChevronDownIcon } from './icons/chevronDown';