@laerdal/life-react-components 1.11.0-dev.35.full → 1.11.0-dev.36
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/contenticons/ContentIcons.cjs +83 -2
- package/dist/icons/contenticons/ContentIcons.cjs.map +1 -1
- package/dist/icons/contenticons/ContentIcons.d.ts +3 -0
- package/dist/icons/contenticons/ContentIcons.js +72 -0
- package/dist/icons/contenticons/ContentIcons.js.map +1 -1
- package/dist/icons/systemicons/SystemIcons.cjs +28 -1
- package/dist/icons/systemicons/SystemIcons.cjs.map +1 -1
- package/dist/icons/systemicons/SystemIcons.d.ts +1 -0
- package/dist/icons/systemicons/SystemIcons.js +24 -0
- package/dist/icons/systemicons/SystemIcons.js.map +1 -1
- package/package.json +4 -2
|
@@ -181,3 +181,4 @@ export declare const VolumeOff: React.FunctionComponent<IconProps>;
|
|
|
181
181
|
export declare const VolumeUp: React.FunctionComponent<IconProps>;
|
|
182
182
|
export declare const Youtube: React.FunctionComponent<IconProps>;
|
|
183
183
|
export declare const Zoom: React.FunctionComponent<IconProps>;
|
|
184
|
+
export declare const Microphone: React.FunctionComponent<IconProps>;
|
|
@@ -4354,4 +4354,28 @@ export var Zoom = function Zoom(_ref181) {
|
|
|
4354
4354
|
})
|
|
4355
4355
|
});
|
|
4356
4356
|
};
|
|
4357
|
+
export var Microphone = function Microphone(_ref182) {
|
|
4358
|
+
var className = _ref182.className,
|
|
4359
|
+
_ref182$color = _ref182.color,
|
|
4360
|
+
color = _ref182$color === void 0 ? 'currentColor' : _ref182$color,
|
|
4361
|
+
_ref182$size = _ref182.size,
|
|
4362
|
+
size = _ref182$size === void 0 ? '24px' : _ref182$size,
|
|
4363
|
+
_ref182$label = _ref182.label,
|
|
4364
|
+
label = _ref182$label === void 0 ? '' : _ref182$label,
|
|
4365
|
+
_ref182$viewBox = _ref182.viewBox,
|
|
4366
|
+
viewBox = _ref182$viewBox === void 0 ? '0 0 24 24' : _ref182$viewBox;
|
|
4367
|
+
return /*#__PURE__*/_jsx(SystemIcon, {
|
|
4368
|
+
tooltip: label,
|
|
4369
|
+
children: /*#__PURE__*/_jsx(SVG, {
|
|
4370
|
+
src: SystemIcons.Microphone,
|
|
4371
|
+
height: getSize(size),
|
|
4372
|
+
width: getSize(size),
|
|
4373
|
+
className: className,
|
|
4374
|
+
viewBox: viewBox,
|
|
4375
|
+
preProcessor: function preProcessor(content) {
|
|
4376
|
+
return formatSvgString(content, color);
|
|
4377
|
+
}
|
|
4378
|
+
})
|
|
4379
|
+
});
|
|
4380
|
+
};
|
|
4357
4381
|
//# sourceMappingURL=SystemIcons.js.map
|