@7shifts/sous-chef 2.12.2 → 2.13.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,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IconSize } from '../types';
|
|
3
|
+
declare type Props = {
|
|
4
|
+
size?: IconSize;
|
|
5
|
+
color?: string;
|
|
6
|
+
} & React.SVGProps<SVGSVGElement>;
|
|
7
|
+
declare const IconReply: {
|
|
8
|
+
(props: Props): JSX.Element;
|
|
9
|
+
displayName: string;
|
|
10
|
+
};
|
|
11
|
+
export default IconReply;
|
|
@@ -91,6 +91,7 @@ export { default as IconPlus } from './IconPlus';
|
|
|
91
91
|
export { default as IconPrint } from './IconPrint';
|
|
92
92
|
export { default as IconQuestionCircle } from './IconQuestionCircle';
|
|
93
93
|
export { default as IconRepeat } from './IconRepeat';
|
|
94
|
+
export { default as IconReply } from './IconReply';
|
|
94
95
|
export { default as IconSearch } from './IconSearch';
|
|
95
96
|
export { default as IconSignOut } from './IconSignOut';
|
|
96
97
|
export { default as IconSitemap } from './IconSitemap';
|
package/dist/index.js
CHANGED
|
@@ -2509,6 +2509,21 @@ var IconRepeat = function IconRepeat(props) {
|
|
|
2509
2509
|
|
|
2510
2510
|
IconRepeat.displayName = 'IconRepeat';
|
|
2511
2511
|
|
|
2512
|
+
var IconReply = function IconReply(props) {
|
|
2513
|
+
return React__default.createElement("svg", Object.assign({
|
|
2514
|
+
viewBox: "0 0 20 20",
|
|
2515
|
+
fill: "none",
|
|
2516
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2517
|
+
"data-testid": "icon-reply",
|
|
2518
|
+
style: getIconStyles(props)
|
|
2519
|
+
}, props), React__default.createElement("path", {
|
|
2520
|
+
d: "m.788 9.854 5.893 6.161c.828.866 2.307.288 2.307-.926v-2.94c5.17.06 7.335.56 6.067 5.058-.28.988.852 1.749 1.663 1.156 1.115-.815 2.985-2.665 2.985-5.845 0-5.729-5.175-6.731-10.715-6.798V2.77c0-1.215-1.48-1.79-2.307-.926L.788 8.003a1.34 1.34 0 0 0 0 1.851Zm.775-1.11 5.893-6.161a.268.268 0 0 1 .461.185v4.018c5.26 0 10.714.374 10.714 5.732 0 2.49-1.339 4.09-2.545 4.972 1.719-6.093-2.43-6.418-8.169-6.418v4.017a.268.268 0 0 1-.461.186L1.563 9.114a.267.267 0 0 1 0-.37Z",
|
|
2521
|
+
fill: "currentColor"
|
|
2522
|
+
}));
|
|
2523
|
+
};
|
|
2524
|
+
|
|
2525
|
+
IconReply.displayName = 'IconReply';
|
|
2526
|
+
|
|
2512
2527
|
var IconSearch = function IconSearch(props) {
|
|
2513
2528
|
return React__default.createElement("svg", Object.assign({
|
|
2514
2529
|
viewBox: "0 0 20 20",
|
|
@@ -6944,6 +6959,7 @@ exports.IconPlus = IconPlus;
|
|
|
6944
6959
|
exports.IconPrint = IconPrint;
|
|
6945
6960
|
exports.IconQuestionCircle = IconQuestionCircle;
|
|
6946
6961
|
exports.IconRepeat = IconRepeat;
|
|
6962
|
+
exports.IconReply = IconReply;
|
|
6947
6963
|
exports.IconSearch = IconSearch;
|
|
6948
6964
|
exports.IconSignOut = IconSignOut;
|
|
6949
6965
|
exports.IconSitemap = IconSitemap;
|