UNPKG

@primer/react

Version:

An implementation of GitHub's Primer Design System using React

9 lines (8 loc) 289 B
import React from 'react'; import { SxProp } from '../sx'; export type AvatarStackProps = { alignRight?: boolean; children: React.ReactNode; } & SxProp; declare const AvatarStack: ({ children, alignRight, sx: sxProp }: AvatarStackProps) => JSX.Element; export default AvatarStack;