UNPKG

styled-icons

Version:

Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components

15 lines (14 loc) 908 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Clipboard = 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 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" }))); }); Clipboard.displayName = 'Clipboard'; export var ClipboardDimensions = { height: 16, width: 16 };