@zag-js/avatar
Version:
Core logic for the avatar widget implemented as a state machine
9 lines (6 loc) • 309 B
text/typescript
import { AvatarProps } from './avatar.types.mjs';
import '@zag-js/core';
import '@zag-js/types';
declare const props: (keyof AvatarProps)[];
declare const splitProps: <Props extends Partial<AvatarProps>>(props: Props) => [Partial<AvatarProps>, Omit<Props, keyof AvatarProps>];
export { props, splitProps };