UNPKG

styled-icons

Version:

Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components

20 lines (19 loc) 1.02 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = require("tslib"); var React = tslib_1.__importStar(require("react")); var StyledIconBase_1 = require("../../StyledIconBase"); exports.ScatterPlot = React.forwardRef(function (props, ref) { var attrs = { "fill": "currentColor", "xmlns": "http://www.w3.org/2000/svg", }; return (React.createElement(StyledIconBase_1.StyledIconBase, tslib_1.__assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }), React.createElement("path", { fill: "none", d: "M0 0h24v24H0V0z", key: "k0" }), React.createElement("g", { key: "k1" }, React.createElement("circle", { cx: 7, cy: 14, r: 3 }), React.createElement("circle", { cx: 11, cy: 6, r: 3 }), React.createElement("circle", { cx: 16.6, cy: 17.6, r: 3 })))); }); exports.ScatterPlot.displayName = 'ScatterPlot'; exports.ScatterPlotDimensions = { height: 24, width: 24 };