UNPKG

design-system-simplefi

Version:

Design System for SimpleFi Applications

11 lines (10 loc) 303 B
import React from 'react'; import { AvatarSize } from './Avatar.enums'; export declare type Sizes = typeof AvatarSize[keyof typeof AvatarSize]; export interface AvatarProps { logo: string; size: Sizes; border?: boolean; onClick?: () => void; style?: React.CSSProperties; }