@7shifts/sous-chef 4.7.2 → 4.8.0-beta-20260720203034

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 +1 @@
1
- export declare const FONT_FAMILY = "'SF Pro', sans-serif";
1
+ export declare const FONT_FAMILY = "'Inter', sans-serif";
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ import { IconSize, IconVariant } from '../../types';
3
+ type Props = {
4
+ size?: IconSize;
5
+ color?: string;
6
+ testId?: string;
7
+ variant?: IconVariant;
8
+ } & React.SVGProps<SVGSVGElement>;
9
+ declare const IconArrowLeftRight: React.ForwardRefExoticComponent<Omit<Props, 'ref'>>;
10
+ export default IconArrowLeftRight;
@@ -1,6 +1,7 @@
1
1
  export { default as IconArrowDown } from './IconArrowDown';
2
2
  export { default as IconArrowDownWideShort } from './IconArrowDownWideShort';
3
3
  export { default as IconArrowLeft } from './IconArrowLeft';
4
+ export { default as IconArrowLeftRight } from './IconArrowLeftRight';
4
5
  export { default as IconArrowRight } from './IconArrowRight';
5
6
  export { default as IconArrowToTop } from './IconArrowToTop';
6
7
  export { default as IconArrowTurnDownRight } from './IconArrowTurnDownRight';
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ import { IconSize, IconVariant } from '../../types';
3
+ type Props = {
4
+ size?: IconSize;
5
+ color?: string;
6
+ testId?: string;
7
+ variant?: IconVariant;
8
+ } & React.SVGProps<SVGSVGElement>;
9
+ declare const IconLanguage: React.ForwardRefExoticComponent<Omit<Props, 'ref'>>;
10
+ export default IconLanguage;
@@ -5,6 +5,7 @@ export { default as IconCameraSlash } from './IconCameraSlash';
5
5
  export { default as IconComment } from './IconComment';
6
6
  export { default as IconCommentLines } from './IconCommentLines';
7
7
  export { default as IconEnvelope } from './IconEnvelope';
8
+ export { default as IconLanguage } from './IconLanguage';
8
9
  export { default as IconMessages } from './IconMessages';
9
10
  export { default as IconMicrophone } from './IconMicrophone';
10
11
  export { default as IconMobile } from './IconMobile';
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ import { IconSize, IconVariant } from '../../types';
3
+ type Props = {
4
+ size?: IconSize;
5
+ color?: string;
6
+ testId?: string;
7
+ variant?: IconVariant;
8
+ } & React.SVGProps<SVGSVGElement>;
9
+ declare const IconInputText: React.ForwardRefExoticComponent<Omit<Props, 'ref'>>;
10
+ export default IconInputText;
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ import { IconSize, IconVariant } from '../../types';
3
+ type Props = {
4
+ size?: IconSize;
5
+ color?: string;
6
+ testId?: string;
7
+ variant?: IconVariant;
8
+ } & React.SVGProps<SVGSVGElement>;
9
+ declare const IconListRadio: React.ForwardRefExoticComponent<Omit<Props, 'ref'>>;
10
+ export default IconListRadio;
@@ -13,10 +13,12 @@ export { default as IconFile } from './IconFile';
13
13
  export { default as IconGripVertical } from './IconGripVertical';
14
14
  export { default as IconHouse } from './IconHouse';
15
15
  export { default as IconImage } from './IconImage';
16
+ export { default as IconInputText } from './IconInputText';
16
17
  export { default as IconItalic } from './IconItalic';
17
18
  export { default as IconLink } from './IconLink';
18
19
  export { default as IconList } from './IconList';
19
20
  export { default as IconListOl } from './IconListOl';
21
+ export { default as IconListRadio } from './IconListRadio';
20
22
  export { default as IconLock } from './IconLock';
21
23
  export { default as IconMemoMagnifyingGlass } from './IconMemoMagnifyingGlass';
22
24
  export { default as IconMinus } from './IconMinus';