UNPKG

design-system-simplefi

Version:

Design System for SimpleFi Applications

10 lines (9 loc) 292 B
import React from 'react'; import { AvatarSize } from '../Avatar/Avatar.enums'; export declare type Sizes = typeof AvatarSize[keyof typeof AvatarSize]; export interface MultiAvatarProps { logos: string[]; size: Sizes; border?: boolean; style?: React.CSSProperties; }