@amaui/ui-react
Version:
UI for React
14 lines (13 loc) • 398 B
TypeScript
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;