styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
14 lines (13 loc) • 946 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var KeyOutline = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase, __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" })));
});
KeyOutline.displayName = 'KeyOutline';
export var KeyOutlineDimensions = { height: 24, width: 24 };