import * as React from 'react'; import styles from './Loading.scss'; export interface LoadingProps { type: 'round' | 'square', colour?: string, className?: string } export const Loading = (props: LoadingProps) => { let lineCap: 'butt' | 'round' = props.type == 'square' ? 'butt' : props.type; return (
Loading...
); }