@primer/react
Version:
An implementation of GitHub's Primer Design System using React
16 lines • 664 B
TypeScript
import React from 'react';
import type { SxProp } from '../sx';
import type { ResponsiveValue } from '../hooks/useResponsiveValue';
export type AvatarStackProps = {
alignRight?: boolean;
disableExpand?: boolean;
variant?: 'cascade' | 'stack';
shape?: 'circle' | 'square';
size?: number | ResponsiveValue<number>;
className?: string;
children: React.ReactNode;
style?: React.CSSProperties;
} & SxProp;
declare const AvatarStack: ({ children, variant, shape, alignRight, disableExpand, size, className, style, sx: sxProp, }: AvatarStackProps) => React.JSX.Element;
export default AvatarStack;
//# sourceMappingURL=AvatarStack.d.ts.map