/** @jsxImportSource react */ import { registerIcon } from "./registry"; export default registerIcon( "loading", ({ key, ...props }: any) => { let style = { animation: "linear infinite 0.5s cx-rotate", }; if (props && props.style) Object.assign(style, props.style); props = { ...props, style, }; return ( ); }, true, );