UNPKG

@amaui/ui-react

Version:
14 lines (13 loc) 398 B
import React from 'react'; import { IButton } from '../Button/Button'; import { IElevation, IPropsAny } from '../types'; export interface IAvatar extends Omit<IButton, 'elevation'> { image?: string; alt?: string; square?: boolean; elevation?: IElevation; TypeProps?: IPropsAny; InteractionProps?: IPropsAny; } declare const Avatar: React.FC<IAvatar>; export default Avatar;