import { FunctionComponent } from 'react'; import { IAvatarProps } from './interfaces'; import { BallerineImage } from '../BallerineImage'; import { ctw } from '../../../utils/ctw/ctw'; /** * @description A max border-radius version of {@link BallerineImage}. * * @param props * * @see {@link BallerineImage} * * @constructor */ export const Avatar: FunctionComponent = ({ className, src, alt, placeholder, isLoading, ...props }) => { return (
); };