UNPKG

styled-icons

Version:

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

15 lines (14 loc) 1.01 kB
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Screenshot = 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: "M11.993 14.407l-1.552 1.552a4 4 0 11-1.418-1.41l1.555-1.556-3.124-3.125a1.5 1.5 0 010-2.121l.354-.354 4.185 4.185 4.189-4.189.353.354a1.5 1.5 0 010 2.12l-3.128 3.13 1.561 1.56a4 4 0 11-1.414 1.414l-1.561-1.56zM19 13V5H5v8H3V4a1 1 0 011-1h16a1 1 0 011 1v9h-2zM7 20a2 2 0 100-4 2 2 0 000 4zm10 0a2 2 0 100-4 2 2 0 000 4z", key: "k1" }))); }); Screenshot.displayName = 'Screenshot'; export var ScreenshotDimensions = { height: 24, width: 24 };