UNPKG

@ark-ui/react

Version:

A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.

19 lines (16 loc) 803 B
'use client'; import { jsx } from 'react/jsx-runtime'; import { mergeProps } from '@zag-js/react'; import { forwardRef } from 'react'; import { createSplitProps } from '../../utils/create-split-props.js'; import { ark } from '../factory.js'; import { useAvatar } from './use-avatar.js'; import { AvatarProvider } from './use-avatar-context.js'; const AvatarRoot = forwardRef((props, ref) => { const [useAvatarProps, localProps] = createSplitProps()(props, ["id", "ids", "onStatusChange"]); const avatar = useAvatar(useAvatarProps); const mergedProps = mergeProps(avatar.getRootProps(), localProps); return /* @__PURE__ */ jsx(AvatarProvider, { value: avatar, children: /* @__PURE__ */ jsx(ark.div, { ...mergedProps, ref }) }); }); AvatarRoot.displayName = "AvatarRoot"; export { AvatarRoot };