UNPKG

styled-icons

Version:

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

15 lines (14 loc) 903 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Attachment = 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", { fill: "none", d: "M0 0h24v24H0z", key: "k0" }), React.createElement("path", { d: "M20.997 2.992L21 21.008a1 1 0 01-.993.992H3.993A.993.993 0 013 21.008V2.992A1 1 0 013.993 2h16.01c.549 0 .994.444.994.992zM9 13V9a1 1 0 112 0v4a1 1 0 002 0V9a3 3 0 00-6 0v4a5 5 0 0010 0V8h-2v5a3 3 0 01-6 0z", key: "k1" }))); }); Attachment.displayName = 'Attachment'; export var AttachmentDimensions = { height: 24, width: 24 };