UNPKG

petals-ui

Version:
12 lines (8 loc) 278 B
import { IGraphicComponent } from '../../graphic'; import { AvatarShape, AvatarSize } from './aliases'; interface IAvatarComponent extends IGraphicComponent { readonly size: AvatarSize; readonly shape: AvatarShape; readonly icon: string; } export { IAvatarComponent };