@ark-ui/react
Version:
A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.
9 lines (8 loc) • 445 B
TypeScript
import { HTMLProps, PolymorphicProps } from '../factory';
import { UseAvatarProps } from './use-avatar';
import { ForwardRefExoticComponent, RefAttributes } from 'react';
export interface AvatarRootBaseProps extends UseAvatarProps, PolymorphicProps {
}
export interface AvatarRootProps extends HTMLProps<'div'>, AvatarRootBaseProps {
}
export declare const AvatarRoot: ForwardRefExoticComponent<AvatarRootProps & RefAttributes<HTMLDivElement>>;