nice-ui
Version:
React design system, components, and utilities
9 lines (8 loc) • 346 B
TypeScript
import * as React from 'react';
import { Props as LabelLayoutProps } from './LabelLayout';
import { Props as LabelRightProps } from './LabelRight';
import { AvatarProps } from '../../1-inline/Avatar';
export interface Props extends LabelLayoutProps, LabelRightProps {
avatar: AvatarProps;
}
export declare const AvatarLabel: React.FC<Props>;