import type { FC } from 'react' import type { LoaderProps } from './types' /** * Takes in custom size and stroke for circle color, default to primary color as fill, * need ...rest for layered styles on top */ export const Loader: FC = ({ size = 16 }) => { return ( ) }