@arco-iconbox/react-coze 0.1.20 → 0.1.21
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/cjs/IconCozLock/index.js
CHANGED
|
@@ -52,8 +52,8 @@ function IconCozLockComponent(props, ref) {
|
|
|
52
52
|
var _a = props.className, className = _a === void 0 ? '' : _a, prefixFromProps = props.prefix, _b = props.width, width = _b === void 0 ? '1em' : _b, _c = props.height, height = _c === void 0 ? '1em' : _c, _d = props.useCurrentColor, useCurrentColor = _d === void 0 ? true : _d, spin = props.spin, rest = __rest(props, ["className", "prefix", "width", "height", "useCurrentColor", "spin"]);
|
|
53
53
|
var prefix = prefixFromProps || prefixFromContext || 'font';
|
|
54
54
|
var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
|
|
55
|
-
return react_1.default.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-coz_lock").concat(loadingKls, " ").concat(className), width: width, height: height, viewBox: "0 0
|
|
56
|
-
react_1.default.createElement("path", { d: "
|
|
55
|
+
return react_1.default.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-coz_lock").concat(loadingKls, " ").concat(className), width: width, height: height, viewBox: "0 0 24 24", fill: useCurrentColor ? 'currentColor' : '#000', xmlns: "http://www.w3.org/2000/svg" }, rest, { ref: ref }),
|
|
56
|
+
react_1.default.createElement("path", { d: "M12 2C15.0376 2 17.5 4.46243 17.5 7.5C17.5 7.66854 17.4924 7.83532 17.4775 8H20C21.1046 8 22 8.89543 22 10V20C22 21.1046 21.1046 22 20 22H4C2.89543 22 2 21.1046 2 20V10C2 8.89543 2.89543 8 4 8H6.52246C6.50762 7.83532 6.5 7.66854 6.5 7.5C6.5 4.46243 8.96243 2 12 2ZM4 20H20V10H4V20ZM12 12C13.6569 12 15 13.3431 15 15C15 16.6569 13.6569 18 12 18C10.3431 18 9 16.6569 9 15C9 13.3431 10.3431 12 12 12ZM12 14C11.4477 14 11 14.4477 11 15C11 15.5523 11.4477 16 12 16C12.5523 16 13 15.5523 13 15C13 14.4477 12.5523 14 12 14ZM12 4C10.067 4 8.5 5.567 8.5 7.5C8.5 7.66975 8.5118 7.83671 8.53516 8H15.4648C15.4882 7.83671 15.5 7.66975 15.5 7.5C15.5 5.567 13.933 4 12 4Z", fillOpacity: "1" }));
|
|
57
57
|
}
|
|
58
58
|
var IconCozLock = react_1.default.forwardRef(IconCozLockComponent);
|
|
59
59
|
exports.default = IconCozLock;
|