styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
19 lines (18 loc) • 1.24 kB
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var Eth = 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 32 32" }, props, { ref: ref }),
React.createElement("g", { fillRule: "evenodd", key: "k0" },
React.createElement("path", { d: "M16 32C7.163 32 0 24.837 0 16S7.163 0 16 0s16 7.163 16 16-7.163 16-16 16zm7.994-15.781L16.498 4 9 16.22l7.498 4.353 7.496-4.354zM24 17.616l-7.502 4.351L9 17.617l7.498 10.378L24 17.616z" }),
React.createElement("g", { fillRule: "nonzero" },
React.createElement("path", { fillOpacity: .298, d: "M16.498 4v8.87l7.497 3.35zm0 17.968v6.027L24 17.616z" }),
React.createElement("path", { fillOpacity: .801, d: "M16.498 20.573l7.497-4.353-7.497-3.348z" }),
React.createElement("path", { fillOpacity: .298, d: "M9 16.22l7.498 4.353v-7.701z" })))));
});
Eth.displayName = 'Eth';
export var EthDimensions = { height: 32, width: 32 };