styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
14 lines (13 loc) • 858 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var Pi = 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", { d: "M18.707 8.535a.999.999 0 00-1.414 0 3.247 3.247 0 01-4.586 0 5.25 5.25 0 00-7.414 0 .999.999 0 101.414 1.414c.374-.374.82-.624 1.293-.776V17a1 1 0 102 0V9.174a3.19 3.19 0 011.293.775A5.222 5.222 0 0014 11.386V17a1 1 0 102 0v-5.614a5.215 5.215 0 002.707-1.437.999.999 0 000-1.414z", key: "k0" })));
});
Pi.displayName = 'Pi';
export var PiDimensions = { height: 24, width: 24 };