UNPKG

gestalt

Version:

A set of React UI components which enforce Pinterest's design language

10 lines (9 loc) 329 B
type Props = { accessibilityLabel?: string; color?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10; isHovered?: boolean; isPressed?: boolean; name: string; }; export default function DefaultAvatar({ accessibilityLabel, color, isHovered, isPressed, name, }: Props): import("react/jsx-runtime").JSX.Element; export {};