styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
15 lines (14 loc) • 925 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var CoinYen = 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 16 16" }, props, { ref: ref }),
React.createElement("path", { d: "M7.5 1a7.5 7.5 0 100 15 7.5 7.5 0 000-15zm0 13.5a6 6 0 110-12 6 6 0 010 12z", key: "k0" }),
React.createElement("path", { d: "M9.5 9a.5.5 0 000-1H8.434l1.482-2.223a.5.5 0 10-.832-.554L7.5 7.599 5.916 5.223a.5.5 0 10-.832.554L6.566 8H5.5a.5.5 0 000 1H7v1H5.5a.5.5 0 000 1H7v1.5a.5.5 0 001 0V11h1.5a.5.5 0 000-1H8V9h1.5z", key: "k1" })));
});
CoinYen.displayName = 'CoinYen';
export var CoinYenDimensions = { height: 16, width: 16 };