@ryohey/react-svg-spinners
Version:
> A collection of [SVG Spinners](https://github.com/n3r4zzurr0/svg-spinners) components for React.
5 lines (4 loc) • 569 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
export default function EclipseHalf({ width = 24, height = 24, dur = "0.6s", color, }) {
return (_jsx("svg", { width: width, height: height, fill: color, viewBox: "0 0 24 24", xmlns: "http://www.w3.org/2000/svg", children: _jsx("path", { d: "M2,12A10.94,10.94,0,0,1,5,4.65c-.21-.19-.42-.36-.62-.55h0A11,11,0,0,0,12,23c.34,0,.67,0,1-.05C6,23,2,17.74,2,12Z", children: _jsx("animateTransform", { attributeName: "transform", type: "rotate", dur: dur, values: "0 12 12;360 12 12", repeatCount: "indefinite" }) }) }));
}