@tant/icons 1.3.25 → 1.3.26

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,60 @@
1
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
2
+ var _excluded = ["color", "size", "spin", "style", "className", "iconClassName"];
3
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
4
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
5
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
6
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
7
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
8
+ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
9
+ function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
10
+ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
11
+ import React from 'react';
12
+ import PropTypes from 'prop-types';
13
+ var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
14
+ var Branch = function Branch(props) {
15
+ var color = props.color,
16
+ size = props.size,
17
+ spin = props.spin,
18
+ style = props.style,
19
+ className = props.className,
20
+ iconClassName = props.iconClassName,
21
+ otherProps = _objectWithoutProperties(props, _excluded);
22
+ return /*#__PURE__*/React.createElement("span", {
23
+ role: "img",
24
+ className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
25
+ }, /*#__PURE__*/React.createElement("style", {
26
+ children: loadingCircleStyle
27
+ }), /*#__PURE__*/React.createElement("svg", _extends({
28
+ xmlns: "http://www.w3.org/2000/svg",
29
+ width: size,
30
+ height: size,
31
+ viewBox: "0 0 24 24",
32
+ fill: color
33
+ }, otherProps, {
34
+ className: iconClassName,
35
+ style: _objectSpread(_objectSpread({}, style), spin ? {
36
+ animationDuration: '1s',
37
+ animationIterationCount: 'infinite',
38
+ animationName: 'loadingCircle',
39
+ animationTimingFunction: 'linear'
40
+ } : {})
41
+ }), /*#__PURE__*/React.createElement("svg", {
42
+ width: "24",
43
+ height: "24",
44
+ xmlns: "http://www.w3.org/2000/svg"
45
+ }, /*#__PURE__*/React.createElement("path", {
46
+ d: "M7.105 15.21A3 3 0 115 15.17V8.83a3.001 3.001 0 112 0V12c.836-.628 1.874-1 3-1h4a3.001 3.001 0 002.895-2.21 3 3 0 112.032.064A5 5 0 0114 13h-4a3.001 3.001 0 00-2.895 2.21z"
47
+ }))));
48
+ };
49
+ Branch.propTypes = {
50
+ iconClassName: PropTypes.string,
51
+ spin: PropTypes.bool,
52
+ color: PropTypes.string,
53
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
54
+ };
55
+ Branch.defaultProps = {
56
+ spin: false,
57
+ color: 'currentColor',
58
+ size: '1em'
59
+ };
60
+ export default Branch;
@@ -0,0 +1,114 @@
1
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
2
+ var _excluded = ["color", "size", "spin", "style", "className", "iconClassName"];
3
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
4
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
5
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
6
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
7
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
8
+ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
9
+ function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
10
+ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
11
+ import React from 'react';
12
+ import PropTypes from 'prop-types';
13
+ var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
14
+ var FlagCn = function FlagCn(props) {
15
+ var color = props.color,
16
+ size = props.size,
17
+ spin = props.spin,
18
+ style = props.style,
19
+ className = props.className,
20
+ iconClassName = props.iconClassName,
21
+ otherProps = _objectWithoutProperties(props, _excluded);
22
+ return /*#__PURE__*/React.createElement("span", {
23
+ role: "img",
24
+ className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
25
+ }, /*#__PURE__*/React.createElement("style", {
26
+ children: loadingCircleStyle
27
+ }), /*#__PURE__*/React.createElement("svg", _extends({
28
+ xmlns: "http://www.w3.org/2000/svg",
29
+ width: size,
30
+ height: size,
31
+ viewBox: "0 0 24 24",
32
+ fill: color
33
+ }, otherProps, {
34
+ className: iconClassName,
35
+ style: _objectSpread(_objectSpread({}, style), spin ? {
36
+ animationDuration: '1s',
37
+ animationIterationCount: 'infinite',
38
+ animationName: 'loadingCircle',
39
+ animationTimingFunction: 'linear'
40
+ } : {})
41
+ }), /*#__PURE__*/React.createElement("svg", {
42
+ width: "24",
43
+ height: "24",
44
+ xmlns: "http://www.w3.org/2000/svg"
45
+ }, /*#__PURE__*/React.createElement("g", {
46
+ clipPath: "url(#clip0_6697_1121)"
47
+ }, /*#__PURE__*/React.createElement("mask", {
48
+ id: "a",
49
+ style: {
50
+ maskType: 'luminance'
51
+ },
52
+ maskUnits: "userSpaceOnUse",
53
+ x: "1",
54
+ y: "4",
55
+ width: "22",
56
+ height: "16"
57
+ }, /*#__PURE__*/React.createElement("path", {
58
+ d: "M21.625 4H2.375C1.615 4 1 4.597 1 5.333v13.334C1 19.403 1.616 20 2.375 20h19.25c.76 0 1.375-.597 1.375-1.333V5.333C23 4.597 22.384 4 21.625 4z"
59
+ })), /*#__PURE__*/React.createElement("g", {
60
+ mask: "url(#a)"
61
+ }, /*#__PURE__*/React.createElement("mask", {
62
+ id: "b",
63
+ style: {
64
+ maskType: 'luminance'
65
+ },
66
+ maskUnits: "userSpaceOnUse",
67
+ x: "1",
68
+ y: "4",
69
+ width: "22",
70
+ height: "16"
71
+ }, /*#__PURE__*/React.createElement("path", {
72
+ d: "M23 4H1v16h22V4z"
73
+ })), /*#__PURE__*/React.createElement("g", {
74
+ mask: "url(#b)",
75
+ fillRule: "evenodd",
76
+ clipRule: "evenodd"
77
+ }, /*#__PURE__*/React.createElement("path", {
78
+ d: "M1 4h22v16H1V4z"
79
+ }), /*#__PURE__*/React.createElement("path", {
80
+ d: "M5.89 10.504l-2.676 2.034L4.236 9.46l-1.785-1.6 2.417-.086L5.891 5.3l1.022 2.476h2.413l-1.78 1.686.81 3.077-2.465-2.034z"
81
+ }), /*#__PURE__*/React.createElement("path", {
82
+ d: "M11.324 8.115l-1.124.657.257-1.283-.936-.96 1.267-.052.536-1.198.535 1.198h1.265l-.933 1.012.28 1.283-1.147-.657z"
83
+ }), /*#__PURE__*/React.createElement("path", {
84
+ d: "M12.699 10.781l-1.124.658.257-1.283-.936-.96 1.267-.053.536-1.198.535 1.198H14.5l-.933 1.013.28 1.283-1.147-.658z"
85
+ }), /*#__PURE__*/React.createElement("path", {
86
+ d: "M11.324 13.448l-1.124.657.257-1.283-.936-.96 1.267-.052.536-1.198.535 1.198h1.265l-.933 1.012.28 1.284-1.147-.658z"
87
+ }), /*#__PURE__*/React.createElement("path", {
88
+ d: "M8.574 14.781l-1.124.658.257-1.283-.936-.96 1.267-.053.536-1.198.535 1.198h1.265l-.933 1.013.28 1.283-1.147-.658z"
89
+ }))), /*#__PURE__*/React.createElement("g", {
90
+ style: {
91
+ mixBlendMode: 'multiply'
92
+ }
93
+ }, /*#__PURE__*/React.createElement("path", {
94
+ d: "M21.625 4.667H2.375a.677.677 0 00-.688.666v13.334c0 .368.308.666.688.666h19.25c.38 0 .688-.298.688-.666V5.333a.677.677 0 00-.688-.666z"
95
+ }))), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
96
+ id: "clip0_6697_1121"
97
+ }, /*#__PURE__*/React.createElement("rect", {
98
+ width: "22",
99
+ height: "16",
100
+ transform: "translate(1 4)"
101
+ }))))));
102
+ };
103
+ FlagCn.propTypes = {
104
+ iconClassName: PropTypes.string,
105
+ spin: PropTypes.bool,
106
+ color: PropTypes.string,
107
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
108
+ };
109
+ FlagCn.defaultProps = {
110
+ spin: false,
111
+ color: 'currentColor',
112
+ size: '1em'
113
+ };
114
+ export default FlagCn;
@@ -0,0 +1,124 @@
1
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
2
+ var _excluded = ["color", "size", "spin", "style", "className", "iconClassName"];
3
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
4
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
5
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
6
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
7
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
8
+ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
9
+ function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
10
+ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
11
+ import React from 'react';
12
+ import PropTypes from 'prop-types';
13
+ var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
14
+ var FlagJp = function FlagJp(props) {
15
+ var color = props.color,
16
+ size = props.size,
17
+ spin = props.spin,
18
+ style = props.style,
19
+ className = props.className,
20
+ iconClassName = props.iconClassName,
21
+ otherProps = _objectWithoutProperties(props, _excluded);
22
+ return /*#__PURE__*/React.createElement("span", {
23
+ role: "img",
24
+ className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
25
+ }, /*#__PURE__*/React.createElement("style", {
26
+ children: loadingCircleStyle
27
+ }), /*#__PURE__*/React.createElement("svg", _extends({
28
+ xmlns: "http://www.w3.org/2000/svg",
29
+ width: size,
30
+ height: size,
31
+ viewBox: "0 0 24 24",
32
+ fill: color
33
+ }, otherProps, {
34
+ className: iconClassName,
35
+ style: _objectSpread(_objectSpread({}, style), spin ? {
36
+ animationDuration: '1s',
37
+ animationIterationCount: 'infinite',
38
+ animationName: 'loadingCircle',
39
+ animationTimingFunction: 'linear'
40
+ } : {})
41
+ }), /*#__PURE__*/React.createElement("svg", {
42
+ width: "24",
43
+ height: "24",
44
+ xmlns: "http://www.w3.org/2000/svg"
45
+ }, /*#__PURE__*/React.createElement("g", {
46
+ clipPath: "url(#clip0_6697_1119)"
47
+ }, /*#__PURE__*/React.createElement("mask", {
48
+ id: "a",
49
+ style: {
50
+ maskType: 'luminance'
51
+ },
52
+ maskUnits: "userSpaceOnUse",
53
+ x: "1",
54
+ y: "4",
55
+ width: "22",
56
+ height: "16"
57
+ }, /*#__PURE__*/React.createElement("path", {
58
+ d: "M21.625 4H2.375C1.615 4 1 4.597 1 5.333v13.334C1 19.403 1.616 20 2.375 20h19.25c.76 0 1.375-.597 1.375-1.333V5.333C23 4.597 22.384 4 21.625 4z"
59
+ })), /*#__PURE__*/React.createElement("g", {
60
+ mask: "url(#a)"
61
+ }, /*#__PURE__*/React.createElement("mask", {
62
+ id: "b",
63
+ style: {
64
+ maskType: 'luminance'
65
+ },
66
+ maskUnits: "userSpaceOnUse",
67
+ x: "1",
68
+ y: "4",
69
+ width: "22",
70
+ height: "16"
71
+ }, /*#__PURE__*/React.createElement("path", {
72
+ d: "M23 4H1v16h22V4z"
73
+ })), /*#__PURE__*/React.createElement("g", {
74
+ mask: "url(#b)"
75
+ }, /*#__PURE__*/React.createElement("path", {
76
+ fillRule: "evenodd",
77
+ clipRule: "evenodd",
78
+ d: "M1 4v16h22V4H1z"
79
+ }), /*#__PURE__*/React.createElement("mask", {
80
+ id: "c",
81
+ style: {
82
+ maskType: 'luminance'
83
+ },
84
+ maskUnits: "userSpaceOnUse",
85
+ x: "1",
86
+ y: "4",
87
+ width: "22",
88
+ height: "16"
89
+ }, /*#__PURE__*/React.createElement("path", {
90
+ fillRule: "evenodd",
91
+ clipRule: "evenodd",
92
+ d: "M1 4v16h22V4H1z"
93
+ })), /*#__PURE__*/React.createElement("g", {
94
+ mask: "url(#c)"
95
+ }, /*#__PURE__*/React.createElement("path", {
96
+ fillRule: "evenodd",
97
+ clipRule: "evenodd",
98
+ d: "M12 17c2.848 0 5.156-2.239 5.156-5S14.848 7 12 7s-5.156 2.239-5.156 5S9.152 17 12 17z"
99
+ })))), /*#__PURE__*/React.createElement("g", {
100
+ style: {
101
+ mixBlendMode: 'multiply'
102
+ }
103
+ }, /*#__PURE__*/React.createElement("path", {
104
+ d: "M21.625 4.667H2.375a.677.677 0 00-.688.666v13.334c0 .368.308.666.688.666h19.25c.38 0 .688-.298.688-.666V5.333a.677.677 0 00-.688-.666z"
105
+ }))), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
106
+ id: "clip0_6697_1119"
107
+ }, /*#__PURE__*/React.createElement("rect", {
108
+ width: "22",
109
+ height: "16",
110
+ transform: "translate(1 4)"
111
+ }))))));
112
+ };
113
+ FlagJp.propTypes = {
114
+ iconClassName: PropTypes.string,
115
+ spin: PropTypes.bool,
116
+ color: PropTypes.string,
117
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
118
+ };
119
+ FlagJp.defaultProps = {
120
+ spin: false,
121
+ color: 'currentColor',
122
+ size: '1em'
123
+ };
124
+ export default FlagJp;
@@ -0,0 +1,168 @@
1
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
2
+ var _excluded = ["color", "size", "spin", "style", "className", "iconClassName"];
3
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
4
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
5
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
6
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
7
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
8
+ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
9
+ function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
10
+ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
11
+ import React from 'react';
12
+ import PropTypes from 'prop-types';
13
+ var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
14
+ var FlagKr = function FlagKr(props) {
15
+ var color = props.color,
16
+ size = props.size,
17
+ spin = props.spin,
18
+ style = props.style,
19
+ className = props.className,
20
+ iconClassName = props.iconClassName,
21
+ otherProps = _objectWithoutProperties(props, _excluded);
22
+ return /*#__PURE__*/React.createElement("span", {
23
+ role: "img",
24
+ className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
25
+ }, /*#__PURE__*/React.createElement("style", {
26
+ children: loadingCircleStyle
27
+ }), /*#__PURE__*/React.createElement("svg", _extends({
28
+ xmlns: "http://www.w3.org/2000/svg",
29
+ width: size,
30
+ height: size,
31
+ viewBox: "0 0 24 24",
32
+ fill: color
33
+ }, otherProps, {
34
+ className: iconClassName,
35
+ style: _objectSpread(_objectSpread({}, style), spin ? {
36
+ animationDuration: '1s',
37
+ animationIterationCount: 'infinite',
38
+ animationName: 'loadingCircle',
39
+ animationTimingFunction: 'linear'
40
+ } : {})
41
+ }), /*#__PURE__*/React.createElement("svg", {
42
+ width: "24",
43
+ height: "24",
44
+ xmlns: "http://www.w3.org/2000/svg"
45
+ }, /*#__PURE__*/React.createElement("g", {
46
+ clipPath: "url(#clip0_6697_1118)"
47
+ }, /*#__PURE__*/React.createElement("mask", {
48
+ id: "a",
49
+ style: {
50
+ maskType: 'luminance'
51
+ },
52
+ maskUnits: "userSpaceOnUse",
53
+ x: "1",
54
+ y: "4",
55
+ width: "22",
56
+ height: "16"
57
+ }, /*#__PURE__*/React.createElement("path", {
58
+ d: "M21.625 4H2.375C1.615 4 1 4.597 1 5.333v13.334C1 19.403 1.616 20 2.375 20h19.25c.76 0 1.375-.597 1.375-1.333V5.333C23 4.597 22.384 4 21.625 4z"
59
+ })), /*#__PURE__*/React.createElement("g", {
60
+ mask: "url(#a)"
61
+ }, /*#__PURE__*/React.createElement("mask", {
62
+ id: "b",
63
+ style: {
64
+ maskType: 'luminance'
65
+ },
66
+ maskUnits: "userSpaceOnUse",
67
+ x: "1",
68
+ y: "4",
69
+ width: "22",
70
+ height: "16"
71
+ }, /*#__PURE__*/React.createElement("path", {
72
+ d: "M23 4H1v16h22V4z"
73
+ })), /*#__PURE__*/React.createElement("g", {
74
+ mask: "url(#b)"
75
+ }, /*#__PURE__*/React.createElement("path", {
76
+ fillRule: "evenodd",
77
+ clipRule: "evenodd",
78
+ d: "M1 4v16h22V4H1z"
79
+ }), /*#__PURE__*/React.createElement("mask", {
80
+ id: "c",
81
+ style: {
82
+ maskType: 'luminance'
83
+ },
84
+ maskUnits: "userSpaceOnUse",
85
+ x: "1",
86
+ y: "4",
87
+ width: "22",
88
+ height: "16"
89
+ }, /*#__PURE__*/React.createElement("path", {
90
+ fillRule: "evenodd",
91
+ clipRule: "evenodd",
92
+ d: "M1 4v16h22V4H1z"
93
+ })), /*#__PURE__*/React.createElement("g", {
94
+ mask: "url(#c)"
95
+ }, /*#__PURE__*/React.createElement("path", {
96
+ fillRule: "evenodd",
97
+ clipRule: "evenodd",
98
+ d: "M11.853 16.381c2.349 0 4.253-1.89 4.253-4.223 0-2.332-1.904-4.223-4.253-4.223-2.348 0-4.252 1.89-4.252 4.223 0 2.332 1.904 4.223 4.252 4.223z"
99
+ }), /*#__PURE__*/React.createElement("mask", {
100
+ id: "d",
101
+ style: {
102
+ maskType: 'luminance'
103
+ },
104
+ maskUnits: "userSpaceOnUse",
105
+ x: "7",
106
+ y: "7",
107
+ width: "10",
108
+ height: "10"
109
+ }, /*#__PURE__*/React.createElement("path", {
110
+ fillRule: "evenodd",
111
+ clipRule: "evenodd",
112
+ d: "M11.853 16.381c2.349 0 4.253-1.89 4.253-4.223 0-2.332-1.904-4.223-4.253-4.223-2.348 0-4.252 1.89-4.252 4.223 0 2.332 1.904 4.223 4.252 4.223z"
113
+ })), /*#__PURE__*/React.createElement("g", {
114
+ mask: "url(#d)"
115
+ }, /*#__PURE__*/React.createElement("path", {
116
+ fillRule: "evenodd",
117
+ clipRule: "evenodd",
118
+ d: "M16.255 12.482s-.24-1.992-2.007-2.1c-1.768-.108-2.244 1.46-2.346 1.876-.102.415-.36 1.524-2.222 1.524-1.861 0-2.03-2.819-2.03-2.819V7.64h8.605v4.842z"
119
+ })), /*#__PURE__*/React.createElement("path", {
120
+ fillRule: "evenodd",
121
+ clipRule: "evenodd",
122
+ d: "M6.018 5.368l.63.552L3.731 9.22l-.629-.552 2.915-3.3zm1.038.893l.629.552-2.811 3.253-.629-.552 2.81-3.253zm1.661 1.455l-.629-.551-2.818 3.278.629.552 2.818-3.279z"
123
+ }), /*#__PURE__*/React.createElement("path", {
124
+ d: "M6.647 5.92l.079.065.065-.074-.075-.065-.069.074zm-.629-.552l.07-.074-.08-.069-.068.078.078.065zM3.732 9.221l-.07.074.08.07.068-.079-.078-.065zm-.629-.552l-.078-.065-.066.074.075.066.07-.075zm4.582-1.856l.079.064.064-.074-.074-.065-.07.075zm-.63-.552l.07-.074-.08-.07-.068.08.079.064zm-2.181 3.805l-.07.074.08.07.07-.08-.08-.064zm-.629-.552l-.08-.064-.063.074.074.065.069-.075zm3.843-2.35l.07-.073-.08-.07-.069.08.08.064zm.63.552l.079.064.063-.073-.073-.065-.07.074zM5.27 10.443l-.08-.064-.063.074.074.064.069-.074zm.629.552l-.07.074.08.07.07-.08-.08-.064zm.817-5.15l-.629-.551-.138.148.63.552.137-.148zM3.81 9.287l2.916-3.301-.157-.13-2.915 3.301.156.13zm-.776-.542l.629.551.138-.148-.629-.552-.138.149zm2.906-3.44l-2.915 3.3.156.13 2.916-3.3-.157-.13zm1.814 1.434l-.63-.551-.137.148.629.552.138-.149zm-2.8 3.392l2.81-3.253-.158-.129-2.811 3.254.158.128zm-.778-.541l.629.551.138-.148-.629-.552-.138.149zm2.8-3.392L4.167 9.45l.158.129 2.81-3.254-.157-.128zM8.02 7.239l.63.552.138-.149-.63-.551-.138.148zm-2.67 3.268l2.819-3.278-.159-.128-2.818 3.278.158.128zm.62.413l-.63-.551-.138.148.629.552.138-.149zm2.67-3.268l-2.82 3.279.16.128L8.796 7.78l-.159-.128z"
125
+ }), /*#__PURE__*/React.createElement("path", {
126
+ fillRule: "evenodd",
127
+ clipRule: "evenodd",
128
+ d: "M17.902 5.368l-.629.552 2.915 3.301.63-.552-2.916-3.3zm-1.037.893l-.63.552 2.811 3.253.63-.552-2.811-3.253zm-1.662 1.455l.63-.551 2.818 3.278-.63.552-2.818-3.279z"
129
+ }), /*#__PURE__*/React.createElement("path", {
130
+ d: "M17.273 5.92l-.078.065-.065-.074.074-.065.07.074zm.63-.552l-.07-.074.079-.069.069.078-.079.065zm2.286 3.853l.069.074-.079.07-.069-.079.079-.065zm.628-.552l.079-.065.065.074-.074.066-.07-.075zm-4.581-1.856l-.08.064-.063-.074.074-.065.069.075zm.629-.552l-.07-.074.08-.07.069.08-.079.064zm2.182 3.805l.069.074-.08.07-.068-.08.079-.064zm.629-.552l.079-.064.064.074-.074.065-.07-.075zm-3.844-2.35l-.069-.073.08-.07.069.08-.08.064zm-.629.552l-.079.064-.064-.073.074-.065.07.074zm3.448 2.727l.079-.064.063.074-.073.064-.07-.074zm-.63.552l.07.074-.08.07-.069-.08.08-.064zm-.817-5.15l.63-.551.138.148-.63.552-.138-.148zm2.906 3.441l-2.915-3.301.157-.13 2.915 3.301-.157.13zm.777-.542l-.63.551-.138-.148.63-.552.138.149zm-2.906-3.44l2.915 3.3-.157.13-2.915-3.3.157-.13zm-1.814 1.434l.629-.551.138.148-.629.552-.138-.149zm2.8 3.392l-2.81-3.253.158-.129 2.81 3.254-.157.128zm.778-.541l-.63.551-.138-.148.63-.552.138.149zm-2.801-3.392l2.81 3.253-.158.129-2.81-3.254.158-.128zm-1.042 1.042l-.63.552-.138-.149.629-.551.139.148zm2.67 3.268l-2.819-3.278.159-.128 2.818 3.278-.158.128zm-.62.413l.63-.551.138.148-.63.552-.137-.149zm-2.67-3.268l2.819 3.279-.159.128-2.818-3.279.159-.128z"
131
+ }), /*#__PURE__*/React.createElement("path", {
132
+ fillRule: "evenodd",
133
+ clipRule: "evenodd",
134
+ d: "M6.018 18.994l.63-.551-2.916-3.302-.629.552 2.915 3.301zm1.038-.892l.629-.552-2.811-3.253-.629.551 2.81 3.254zm1.661-1.456l-.629.552L5.27 13.92l.629-.552 2.818 3.278z"
135
+ }), /*#__PURE__*/React.createElement("path", {
136
+ d: "M6.647 18.443l.079-.065.065.074-.075.065-.069-.074zm-.629.551l.07.075-.08.069-.068-.079.078-.065zm-2.286-3.852l-.07-.075.08-.069.068.079-.078.065zm-.629.551l-.078.065-.066-.074.075-.065.07.074zm4.582 1.857l.079-.064.064.074-.074.064-.07-.074zm-.63.552l.07.074-.08.07-.068-.08.079-.064zm-2.181-3.805l-.07-.075.08-.07.07.08-.08.065zm-.629.551l-.08.064-.063-.073.074-.065.069.074zm3.843 2.35l.07.074-.08.07-.069-.08.08-.064zm.63-.552l.079-.064.063.074-.073.064-.07-.074zM5.27 13.92l-.08.064-.063-.074.074-.064.069.074zm.629-.552l-.07-.074.08-.07.07.08-.08.064zm.817 5.149l-.629.552-.138-.149.63-.551.137.148zm-2.906-3.44l2.916 3.3-.157.13-2.915-3.3.156-.13zm-.776.542l.629-.552.138.149-.629.551-.138-.148zm2.906 3.44l-2.915-3.3.156-.13 2.916 3.3-.157.13zm1.814-1.435l-.63.552-.137-.148.629-.552.138.148zm-2.8-3.392l2.81 3.254-.158.128-2.811-3.253.158-.129zm-.778.542l.629-.552.138.149-.629.551-.138-.148zm2.8 3.392l-2.81-3.254.158-.128 2.81 3.254-.157.128zm1.043-1.042l.63-.552.138.148-.63.552-.138-.148zm-2.67-3.268l2.819 3.278-.159.128-2.818-3.278.158-.128zm.62-.414l-.63.552-.138-.148.629-.552.138.148zm2.67 3.268l-2.82-3.278.16-.128 2.818 3.278-.159.128z"
137
+ }), /*#__PURE__*/React.createElement("path", {
138
+ fillRule: "evenodd",
139
+ clipRule: "evenodd",
140
+ d: "M17.902 18.994l-.629-.551 2.915-3.302.63.552-2.916 3.301zm-1.037-.892l-.63-.552 2.811-3.253.63.551-2.811 3.254zm-1.662-1.456l.63.552 2.818-3.278-.63-.552-2.818 3.278z"
141
+ }), /*#__PURE__*/React.createElement("path", {
142
+ d: "M17.273 18.443l-.078-.065-.065.074.074.065.07-.074zm.63.551l-.07.075.079.069.069-.079-.079-.065zm2.286-3.852l.069-.075-.079-.069-.069.079.079.065zm.628.551l.079.065.065-.074-.074-.065-.07.074zm-4.581 1.857l-.08-.064-.063.074.074.064.069-.074zm.629.552l-.07.074.08.07.069-.08-.079-.064zm2.182-3.805l.069-.075-.08-.07-.068.08.079.065zm.629.551l.079.064.064-.073-.074-.065-.07.074zm-3.844 2.35l-.069.074.08.07.069-.08-.08-.064zm-.629-.552l-.079-.064-.064.074.074.064.07-.074zm3.448-2.726l.079.064.063-.074-.073-.064-.07.074zm-.63-.552l.07-.074-.08-.07-.069.08.08.064zm-.817 5.149l.63.552.138-.149-.63-.551-.138.148zm2.906-3.44l-2.915 3.3.157.13 2.915-3.3-.157-.13zm.777.542l-.63-.552-.138.149.63.551.138-.148zm-2.906 3.44l2.915-3.3-.157-.13-2.915 3.3.157.13zm-1.814-1.435l.629.552.138-.148-.629-.552-.138.148zm2.8-3.392l-2.81 3.254.158.128 2.81-3.253-.157-.129zm.778.542l-.63-.552-.138.149.63.551.138-.148zm-2.801 3.392l2.81-3.254-.158-.128-2.81 3.254.158.128zm-1.042-1.042l-.63-.552-.138.148.629.552.139-.148zm2.67-3.268l-2.819 3.278.159.128 2.818-3.278-.158-.128zm-.62-.414l.63.552.138-.148-.63-.552-.137.148zm-2.67 3.268l2.819-3.278-.159-.128-2.818 3.278.159.128z"
143
+ })))), /*#__PURE__*/React.createElement("g", {
144
+ style: {
145
+ mixBlendMode: 'multiply'
146
+ }
147
+ }, /*#__PURE__*/React.createElement("path", {
148
+ d: "M21.625 4.667H2.375a.677.677 0 00-.688.666v13.334c0 .368.308.666.688.666h19.25c.38 0 .688-.298.688-.666V5.333a.677.677 0 00-.688-.666z"
149
+ }))), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
150
+ id: "clip0_6697_1118"
151
+ }, /*#__PURE__*/React.createElement("rect", {
152
+ width: "22",
153
+ height: "16",
154
+ transform: "translate(1 4)"
155
+ }))))));
156
+ };
157
+ FlagKr.propTypes = {
158
+ iconClassName: PropTypes.string,
159
+ spin: PropTypes.bool,
160
+ color: PropTypes.string,
161
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
162
+ };
163
+ FlagKr.defaultProps = {
164
+ spin: false,
165
+ color: 'currentColor',
166
+ size: '1em'
167
+ };
168
+ export default FlagKr;
@@ -0,0 +1,114 @@
1
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
2
+ var _excluded = ["color", "size", "spin", "style", "className", "iconClassName"];
3
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
4
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
5
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
6
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
7
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
8
+ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
9
+ function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
10
+ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
11
+ import React from 'react';
12
+ import PropTypes from 'prop-types';
13
+ var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
14
+ var FlagUs = function FlagUs(props) {
15
+ var color = props.color,
16
+ size = props.size,
17
+ spin = props.spin,
18
+ style = props.style,
19
+ className = props.className,
20
+ iconClassName = props.iconClassName,
21
+ otherProps = _objectWithoutProperties(props, _excluded);
22
+ return /*#__PURE__*/React.createElement("span", {
23
+ role: "img",
24
+ className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
25
+ }, /*#__PURE__*/React.createElement("style", {
26
+ children: loadingCircleStyle
27
+ }), /*#__PURE__*/React.createElement("svg", _extends({
28
+ xmlns: "http://www.w3.org/2000/svg",
29
+ width: size,
30
+ height: size,
31
+ viewBox: "0 0 24 24",
32
+ fill: color
33
+ }, otherProps, {
34
+ className: iconClassName,
35
+ style: _objectSpread(_objectSpread({}, style), spin ? {
36
+ animationDuration: '1s',
37
+ animationIterationCount: 'infinite',
38
+ animationName: 'loadingCircle',
39
+ animationTimingFunction: 'linear'
40
+ } : {})
41
+ }), /*#__PURE__*/React.createElement("svg", {
42
+ width: "24",
43
+ height: "24",
44
+ xmlns: "http://www.w3.org/2000/svg"
45
+ }, /*#__PURE__*/React.createElement("g", {
46
+ clipPath: "url(#clip0_6697_1120)"
47
+ }, /*#__PURE__*/React.createElement("mask", {
48
+ id: "a",
49
+ style: {
50
+ maskType: 'luminance'
51
+ },
52
+ maskUnits: "userSpaceOnUse",
53
+ x: "1",
54
+ y: "4",
55
+ width: "22",
56
+ height: "16"
57
+ }, /*#__PURE__*/React.createElement("path", {
58
+ d: "M21.625 4H2.375C1.615 4 1 4.597 1 5.333v13.334C1 19.403 1.616 20 2.375 20h19.25c.76 0 1.375-.597 1.375-1.333V5.333C23 4.597 22.384 4 21.625 4z"
59
+ })), /*#__PURE__*/React.createElement("g", {
60
+ mask: "url(#a)"
61
+ }, /*#__PURE__*/React.createElement("mask", {
62
+ id: "b",
63
+ style: {
64
+ maskType: 'luminance'
65
+ },
66
+ maskUnits: "userSpaceOnUse",
67
+ x: "1",
68
+ y: "4",
69
+ width: "22",
70
+ height: "16"
71
+ }, /*#__PURE__*/React.createElement("path", {
72
+ d: "M23 4H1v16h22V4z"
73
+ })), /*#__PURE__*/React.createElement("g", {
74
+ mask: "url(#b)"
75
+ }, /*#__PURE__*/React.createElement("path", {
76
+ fillRule: "evenodd",
77
+ clipRule: "evenodd",
78
+ d: "M1 4h22v16H1V4z"
79
+ }), /*#__PURE__*/React.createElement("path", {
80
+ fillRule: "evenodd",
81
+ clipRule: "evenodd",
82
+ d: "M1 5.333v1.334h22V5.333H1zM1 8v1.333h22V8H1zm0 4v-1.333h22V12H1zm0 1.333v1.334h22v-1.334H1zm0 4V16h22v1.333H1zM1 20v-1.333h22V20H1z"
83
+ }), /*#__PURE__*/React.createElement("path", {
84
+ d: "M13.375 4H1v9.333h12.375V4z"
85
+ }), /*#__PURE__*/React.createElement("path", {
86
+ fillRule: "evenodd",
87
+ clipRule: "evenodd",
88
+ d: "M2.43 6.898l.729-.492.565.395h-.32l.647.555-.219.778H3.49l-.332-.715-.284.715H2.03l.647.555-.246.876.729-.492.565.394h-.32l.647.556-.219.778H3.49l-.332-.715-.284.715H2.03l.647.555-.246.876.729-.492.705.492-.22-.876.567-.555h-.262l.585-.395.565.395h-.32l.647.555-.246.876.729-.492.705.492-.22-.876.567-.555h-.262l.585-.395.565.395h-.32l.647.555-.246.876.729-.492.705.492-.22-.876.567-.555h-.262l.585-.395.565.395h-.32l.647.555-.246.876.729-.492.705.492-.22-.876.567-.555h-.721l-.332-.715-.284.715h-.41l-.195-.778.567-.556h-.261l.584-.394.705.492-.22-.876.567-.555h-.721l-.332-.715-.284.715h-.41l-.195-.778.567-.555h-.261l.584-.395.705.492-.22-.875.567-.556h-.721l-.332-.714-.284.714h-.845l.647.556-.219.778h-.342l-.332-.715-.284.715h-.41l-.195-.778.567-.556H8.99l-.332-.714-.284.714H7.53l.647.556-.219.778h-.342l-.332-.715-.284.715h-.41l-.195-.778.567-.556H6.24l-.332-.714-.284.714H4.78l.647.556-.219.778h-.342l-.332-.715-.284.715h-.41l-.195-.778.567-.556H3.49l-.332-.714-.284.714H2.03l.647.556-.246.875zm8.277 2.57l.219-.779-.647-.555h.32l-.565-.394-.585.394h.262l-.567.555.195.778h.41l.284-.714.332.714h.342zm-1.483 0l-.565-.395-.585.394h.262l-.567.556.195.778h.41l.284-.715.332.715h.342l.219-.778-.647-.556h.32zm-2.423.555l-.219.778H6.24l-.332-.715-.284.715h-.41l-.195-.778.567-.556h-.262l.585-.394.565.394h-.32l.647.556zm.198-.556h-.41l-.195-.778.567-.555h-.262l.585-.394.565.394h-.32l.647.555-.219.778h-.342l-.332-.714-.284.714zm-1.792 0l.219-.778-.647-.555h.32l-.565-.394-.585.394h.262l-.567.555.195.778h.41l.284-.714.332.714h.342zm4.344-2.111l-.219.778H8.99l-.332-.715-.284.715h-.41l-.195-.778.567-.555h-.262l.585-.395.565.395h-.32l.647.555zM6.474 6.8l-.565-.395-.585.395h.262l-.567.555.195.778h.41l.284-.715.332.715h.342l.219-.778-.647-.555h.32z"
89
+ }))), /*#__PURE__*/React.createElement("g", {
90
+ style: {
91
+ mixBlendMode: 'multiply'
92
+ }
93
+ }, /*#__PURE__*/React.createElement("path", {
94
+ d: "M21.625 4.667H2.375a.677.677 0 00-.688.666v13.334c0 .368.308.666.688.666h19.25c.38 0 .688-.298.688-.666V5.333a.677.677 0 00-.688-.666z"
95
+ }))), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
96
+ id: "clip0_6697_1120"
97
+ }, /*#__PURE__*/React.createElement("rect", {
98
+ width: "22",
99
+ height: "16",
100
+ transform: "translate(1 4)"
101
+ }))))));
102
+ };
103
+ FlagUs.propTypes = {
104
+ iconClassName: PropTypes.string,
105
+ spin: PropTypes.bool,
106
+ color: PropTypes.string,
107
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
108
+ };
109
+ FlagUs.defaultProps = {
110
+ spin: false,
111
+ color: 'currentColor',
112
+ size: '1em'
113
+ };
114
+ export default FlagUs;