dgz-ui-shared
Version:
Custom ui library using React.js, Shadcn/ui, TailwindCSS, Typescript, dgz-ui library
14 lines • 501 B
TypeScript
import { HTMLAttributes } from 'react';
/**
* Props for the Spin component.
*/
export type SpinProps = HTMLAttributes<HTMLOrSVGElement>;
/**
* Spin renders a simple SVG spinner. You can override className to change size/color.
*
* @param props - Optional HTML/SVG attributes applied to the svg element.
* @returns {JSX.Element} An SVG spinner element.
*/
declare const Spin: (props?: SpinProps) => import("react/jsx-runtime").JSX.Element;
export default Spin;
//# sourceMappingURL=Spin.d.ts.map