styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
17 lines (16 loc) • 1.03 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.Clipboard = 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 16 16" }, props, { ref: ref }),
React.createElement("path", { d: "M14.5 2H10a2 2 0 10-4 0H1.5a.5.5 0 00-.5.5v13a.5.5 0 00.5.5h13a.5.5 0 00.5-.5v-13a.5.5 0 00-.5-.5zM8 1a1 1 0 110 2 1 1 0 010-2zm6 14H2V3h2v1.5a.5.5 0 00.5.5h7a.5.5 0 00.5-.5V3h2v12z", key: "k0" }),
React.createElement("path", { d: "M7 13.414L3.793 9.707l.914-.914L7 10.586l4.293-3.793.914.914z", key: "k1" })));
});
exports.Clipboard.displayName = 'Clipboard';
exports.ClipboardDimensions = { height: 16, width: 16 };
;