@7shifts/sous-chef 3.67.2 → 3.68.0

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.
@@ -1,7 +1,7 @@
1
1
  import Toggle from './Toggle';
2
2
  import Button from './Button';
3
- import { ButtonTheme } from './Button/types';
3
+ import { ButtonTheme, ButtonSize } from './Button/types';
4
4
  import PaginationControls from './PaginationControls';
5
5
  import Link from './Link';
6
6
  export { Toggle, Button, PaginationControls, Link };
7
- export type { ButtonTheme };
7
+ export type { ButtonTheme, ButtonSize };
@@ -0,0 +1,9 @@
1
+ import React from 'react';
2
+ import { IconSize } from '../types';
3
+ type Props = {
4
+ size?: IconSize;
5
+ color?: string;
6
+ testId?: string;
7
+ } & React.SVGProps<SVGSVGElement>;
8
+ declare const IconThumbsDown: React.ForwardRefExoticComponent<Omit<Props, 'ref'>>;
9
+ export default IconThumbsDown;
@@ -0,0 +1,9 @@
1
+ import React from 'react';
2
+ import { IconSize } from '../types';
3
+ type Props = {
4
+ size?: IconSize;
5
+ color?: string;
6
+ testId?: string;
7
+ } & React.SVGProps<SVGSVGElement>;
8
+ declare const IconThumbsUp: React.ForwardRefExoticComponent<Omit<Props, 'ref'>>;
9
+ export default IconThumbsUp;
@@ -132,6 +132,8 @@ export { default as IconSyncExclaimation } from './IconSyncExclaimation';
132
132
  export { default as IconSync } from './IconSync';
133
133
  export { default as IconTable } from './IconTable';
134
134
  export { default as IconTachometer } from './IconTachometer';
135
+ export { default as IconThumbsDown } from './IconThumbsDown';
136
+ export { default as IconThumbsUp } from './IconThumbsUp';
135
137
  export { default as IconTimesOctagon } from './IconTimesOctagon';
136
138
  export { default as IconTimes } from './IconTimes';
137
139
  export { default as IconTrash } from './IconTrash';