labsense-ui-kit 1.2.16 → 1.2.18
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.
- package/dist/Icons/SVGs/Send.d.ts +4 -0
- package/dist/Icons/SVGs/index.d.ts +1 -0
- package/dist/Icons/index.d.ts +1 -1
- package/dist/index.js +20 -2
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +20 -2
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
|
@@ -3177,6 +3177,23 @@ var SecureSystem = function SecureSystem(_ref) {
|
|
|
3177
3177
|
}));
|
|
3178
3178
|
};
|
|
3179
3179
|
|
|
3180
|
+
var Send = function Send(_ref) {
|
|
3181
|
+
var size = _ref.size,
|
|
3182
|
+
color = _ref.color,
|
|
3183
|
+
weight = _ref.weight;
|
|
3184
|
+
return React.createElement("svg", {
|
|
3185
|
+
width: size,
|
|
3186
|
+
height: size,
|
|
3187
|
+
strokeWidth: weight,
|
|
3188
|
+
viewBox: '0 0 22 24',
|
|
3189
|
+
fill: 'none',
|
|
3190
|
+
xmlns: 'http://www.w3.org/2000/svg'
|
|
3191
|
+
}, React.createElement("path", {
|
|
3192
|
+
d: "M21.2392 0.930737C21.1002 0.815346 20.9312 0.741828 20.752 0.718749C20.5729 0.69567 20.3908 0.723979 20.2271 0.800378L0.581055 10.0218V11.8062L8.83279 15.1068L14.1257 23.2499H15.9104L21.5495 1.90307C21.5952 1.72825 21.5904 1.54403 21.5354 1.37188C21.4805 1.19973 21.3777 1.04674 21.2392 0.930737ZM14.8086 21.548L10.259 14.5485L17.2599 6.88063L16.1522 5.86925L9.09651 13.5969L2.29293 10.8755L19.7981 2.65869L14.8086 21.548Z",
|
|
3193
|
+
fill: color
|
|
3194
|
+
}));
|
|
3195
|
+
};
|
|
3196
|
+
|
|
3180
3197
|
var Settings = function Settings(_ref) {
|
|
3181
3198
|
var size = _ref.size,
|
|
3182
3199
|
color = _ref.color,
|
|
@@ -4306,6 +4323,7 @@ var IconSVGs = {
|
|
|
4306
4323
|
SandTimer: SandTimer,
|
|
4307
4324
|
Search: Search,
|
|
4308
4325
|
SecureSystem: SecureSystem,
|
|
4326
|
+
Send: Send,
|
|
4309
4327
|
Settings: Settings,
|
|
4310
4328
|
Shield: Shield,
|
|
4311
4329
|
SlantLine: SlantLine,
|
|
@@ -6299,12 +6317,12 @@ var SelectOption = function SelectOption(_ref36) {
|
|
|
6299
6317
|
weight: icon.weight || '1px',
|
|
6300
6318
|
color: icon.color || themeColors.text.medium
|
|
6301
6319
|
}), label ? React.createElement(LabelText$1, {
|
|
6302
|
-
color: color,
|
|
6320
|
+
"$color": color,
|
|
6303
6321
|
"$disabled": disabled,
|
|
6304
6322
|
"$size": size
|
|
6305
6323
|
}, label) : React.createElement(LabelText$1, {
|
|
6306
6324
|
"$fontStyle": fontStyle ? fontStyle : 'italic',
|
|
6307
|
-
color: themeColors.text.light,
|
|
6325
|
+
"$color": themeColors.text.light,
|
|
6308
6326
|
"$size": size
|
|
6309
6327
|
}, labelText), React.createElement(Icon, {
|
|
6310
6328
|
icon: isOpen ? 'UpArrow' : 'DownArrow',
|