UNPKG

@saleor/macaw-ui

Version:

Saleor's UI component library

14 lines (12 loc) 390 B
import { UserAvatarVariants } from './User.css'; import { PropsWithBox } from '../../Box'; import { DataAttributes } from '../../types'; export type UserAvatarProps = PropsWithBox<DataAttributes & { className?: string; initials?: string; src?: string; }> & UserAvatarVariants; export declare const User: { (props: UserAvatarProps): JSX.Element; displayName: string; };