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.12 kB
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Chrome = 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: "M10.365 19.833l1.93-3.342a4.499 4.499 0 01-4.234-2.315L4.794 8.52a8.003 8.003 0 005.57 11.313zm2.225.146A8 8 0 0019.602 9.5h-3.86A4.48 4.48 0 0116.5 12a4.48 4.48 0 01-.642 2.318l-3.268 5.66zm1.553-6.691l.022-.038a2.5 2.5 0 10-4.354-.042l.024.042a2.499 2.499 0 004.308.038zm-8.108-6.62l1.929 3.34A4.5 4.5 0 0112 7.5h6.615A7.992 7.992 0 0012 4a7.98 7.98 0 00-5.965 2.669zM12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10z", key: "k1" }))); }); Chrome.displayName = 'Chrome'; export var ChromeDimensions = { height: 24, width: 24 };