@useloops/design-system
Version:
The official React based Loops design system
11 lines (8 loc) • 309 B
TypeScript
import { AvatarProps as AvatarProps$1 } from '@mui/material';
import { FunctionComponent } from 'react';
interface AvatarProps extends AvatarProps$1 {
sizing?: 'xxs' | 'xs' | 'sm' | 'lg';
}
declare const Avatar: FunctionComponent<AvatarProps>;
export { Avatar as default };
export type { AvatarProps };