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.59 kB
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Firefox = 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: "M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12c0-1.996.585-3.855 1.592-5.416.013-1.102.577-2.408 1.339-3.076.046.853.35 1.512.91 1.976a4.095 4.095 0 012.294.194c.748-.9 2.013-1.024 2.789-.721-.753.39-1.32 1.155-1.54 1.755.105.459.477.809.942.884 1.32.13 1.573.234 1.612.383.002.04.002.079 0 .118-.169.772-.784.977-1.157 1.124-.55.216-.933.437-1.15.663.126.593-.241 1.261-.241 1.261-.164-.19-.435-.323-.813-.396a.897.897 0 00-.39.37c-.144.326-.144.588.046 1.014.115.257.945.962 1.163 1.086.956.54 1.638-.02 2.373-.124a1.95 1.95 0 011.859.721c.273.358-.026.696-.377.585-.364-.117-.806.183-1.54.592a3.666 3.666 0 01-2.334.273 4.335 4.335 0 01-.585-.156h-.085a4.68 4.68 0 001.378 1.3c.363.184.75.315 1.151.39a4.641 4.641 0 005.681-4.55c.004-.67-.033-2.184-1.06-3.029a5.48 5.48 0 01-1.826-2.431c-.582-1.569-.104-3.102.445-4.165.05-.096.386-.818.938-1.421-.061.684 1.062 1.848 1.341 1.996C19.88 4.894 22 8.2 22 12z", key: "k1" }))); }); Firefox.displayName = 'Firefox'; export var FirefoxDimensions = { height: 24, width: 24 };