styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
16 lines (15 loc) • 1.07 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var React = tslib_1.__importStar(require("react"));
var StyledIconBase_1 = require("../../StyledIconBase");
exports.KeyOutline = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase_1.StyledIconBase, tslib_1.__assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }),
React.createElement("path", { d: "M10 21H4v-4.414l3.783-3.783A5.927 5.927 0 017.5 11c0-3.309 2.691-6 6-6s6 2.691 6 6-2.691 6-6 6H12v2h-2v2zm-4-2h2v-2h2v-2h3.5c2.206 0 4-1.794 4-4s-1.794-4-4-4-4 1.794-4 4c0 .559.121 1.109.359 1.639l.285.631L6 17.414V19zm7.5-9.002a1.002 1.002 0 010 2.002 1.001 1.001 0 010-2.002m0-1A2.001 2.001 0 1013.502 13a2.001 2.001 0 00-.002-4.002z", key: "k0" })));
});
exports.KeyOutline.displayName = 'KeyOutline';
exports.KeyOutlineDimensions = { height: 24, width: 24 };
;