import React, { FC } from 'react' import styles from './spinner.module.css' type SpinnerTypes = { /** * Size of the spinner */ size: string; /** * Color of the spinner */ color: string; /** * className */ className?: string; } export const Spinner:FC = ({ size='md', className, color='primary'}) => { return (
) };