@7shifts/sous-chef 3.51.1 → 3.52.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.
@@ -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 IconClockRewind: React.ForwardRefExoticComponent<Omit<Props, 'ref'>>;
9
+ export default IconClockRewind;
@@ -43,6 +43,7 @@ export { default as IconChevronLeft } from './IconChevronLeft';
43
43
  export { default as IconChevronRight } from './IconChevronRight';
44
44
  export { default as IconChevronUp } from './IconChevronUp';
45
45
  export { default as IconClipboardList } from './IconClipboardList';
46
+ export { default as IconClockRewind } from './IconClockRewind';
46
47
  export { default as IconClock } from './IconClock';
47
48
  export { default as IconCog } from './IconCog';
48
49
  export { default as IconCommentLines } from './IconCommentLines';