import React from 'react'; type Props = { /** * Adjusts width and height */ size?: number | string; /** * Color of Loader */ color?: string; }; type LoadingProps = Props & React.SVGProps; export const Loading = ({ size = 24, color = 'white', ...props }: LoadingProps) => ( );