@100mslive/roomkit-react
Version:

15 lines (14 loc) • 360 B
TypeScript
import React from 'react';
declare type Props = {
/**
* Adjusts width and height
*/
size?: number | string;
/**
* Color of Loader
*/
color?: string;
};
declare type LoadingProps = Props & React.SVGProps<SVGSVGElement>;
export declare const Loading: ({ size, color, ...props }: LoadingProps) => React.JSX.Element;
export {};