styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
21 lines (20 loc) • 1.2 kB
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var LoaderCircle = 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("circle", { cx: 12, cy: 20, r: 2, key: "k0" }),
React.createElement("circle", { cx: 12, cy: 4, r: 2, key: "k1" }),
React.createElement("circle", { cx: 6.343, cy: 17.657, r: 2, key: "k2" }),
React.createElement("circle", { cx: 17.657, cy: 6.343, r: 2, key: "k3" }),
React.createElement("circle", { cx: 4, cy: 12, r: 2.001, key: "k4" }),
React.createElement("circle", { cx: 20, cy: 12, r: 2, key: "k5" }),
React.createElement("circle", { cx: 6.343, cy: 6.344, r: 2, key: "k6" }),
React.createElement("circle", { cx: 17.657, cy: 17.658, r: 2, key: "k7" })));
});
LoaderCircle.displayName = 'LoaderCircle';
export var LoaderCircleDimensions = { height: 24, width: 24 };