import * as React from "react"; export interface ISpinner extends React.SVGAttributes { height?: string; width?: string; className?: string | undefined; } export const Spinner: React.FC = ({ height = "32px", width = "32px", className = "", ...rest }) => (
Loading...
);