@gataca/design-system 1.0.31 → 1.0.33

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.
@@ -152,6 +152,7 @@ export { default as SmartphoneNfcIcon } from './native/Icons/icons/smartphoneNfc
152
152
  export { default as SmileIcon } from './native/Icons/icons/smile';
153
153
  export { default as SortIcon } from './native/Icons/icons/sort';
154
154
  export { default as TabletIcon } from './native/Icons/icons/tablet';
155
+ export { default as TestIcon } from './native/Icons/icons/test';
155
156
  export { default as ThumbsDownIcon } from './native/Icons/icons/thumbsDown';
156
157
  export { default as ThumbsUpIcon } from './native/Icons/icons/thumbsUp';
157
158
  export { default as TicketIcon } from './native/Icons/icons/ticket';
@@ -146,6 +146,7 @@ export { default as SmartphoneNfcIcon } from './web/Icons/icons/smartphoneNfc';
146
146
  export { default as SmileIcon } from './web/Icons/icons/smile';
147
147
  export { default as SortIcon } from './web/Icons/icons/sort';
148
148
  export { default as TabletIcon } from './web/Icons/icons/tablet';
149
+ export { default as TestIcon } from './web/Icons/icons/test';
149
150
  export { default as ThumbsDownIcon } from './web/Icons/icons/thumbsDown';
150
151
  export { default as ThumbsUpIcon } from './web/Icons/icons/thumbsUp';
151
152
  export { default as TicketIcon } from './web/Icons/icons/ticket';
@@ -0,0 +1,8 @@
1
+ import { IconSize } from '../icon_types';
2
+ type TestIconProps = {
3
+ id?: string;
4
+ size: IconSize;
5
+ color?: string;
6
+ };
7
+ declare const TestIcon: (props: TestIconProps) => import("react/jsx-runtime").JSX.Element;
8
+ export default TestIcon;
@@ -115,6 +115,7 @@ export { default as SmartphoneNfcIcon } from './icons/smartphoneNfc';
115
115
  export { default as SmileIcon } from './icons/smile';
116
116
  export { default as SortIcon } from './icons/sort';
117
117
  export { default as TabletIcon } from './icons/tablet';
118
+ export { default as TestIcon } from './icons/test';
118
119
  export { default as ThumbsDownIcon } from './icons/thumbsDown';
119
120
  export { default as ThumbsUpIcon } from './icons/thumbsUp';
120
121
  export { default as TicketIcon } from './icons/ticket';
@@ -0,0 +1,9 @@
1
+ import { IconSize } from '../icon_types';
2
+ type TestIconProps = {
3
+ id?: string;
4
+ size: IconSize;
5
+ color?: string;
6
+ className?: string;
7
+ };
8
+ declare const TestIcon: (props: TestIconProps) => import("react/jsx-runtime").JSX.Element;
9
+ export default TestIcon;
@@ -115,6 +115,7 @@ export { default as SmartphoneNfcIcon } from './icons/smartphoneNfc';
115
115
  export { default as SmileIcon } from './icons/smile';
116
116
  export { default as SortIcon } from './icons/sort';
117
117
  export { default as TabletIcon } from './icons/tablet';
118
+ export { default as TestIcon } from './icons/test';
118
119
  export { default as ThumbsDownIcon } from './icons/thumbsDown';
119
120
  export { default as ThumbsUpIcon } from './icons/thumbsUp';
120
121
  export { default as TicketIcon } from './icons/ticket';