styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
18 lines (17 loc) • 1.04 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.Paste = 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", { fill: "none", d: "M9 4h6v2H9z", key: "k0" }),
React.createElement("path", { d: "M20 11h-7a2 2 0 00-2 2v7a2 2 0 002 2h7a2 2 0 002-2v-7a2 2 0 00-2-2z", key: "k1" }),
React.createElement("path", { d: "M21 9V6a2 2 0 00-2-2h-2a2 2 0 00-2-2H9a2 2 0 00-2 2H5a2 2 0 00-2 2v12a2 2 0 002 2h4v-9a2 2 0 012-2h10zM9 6V4h6v2H9z", key: "k2" })));
});
exports.Paste.displayName = 'Paste';
exports.PasteDimensions = { height: 24, width: 24 };