Skip to main content
Glama

@arizeai/phoenix-mcp

Official
by Arize-ai
Group.tsx902 B
import { forwardRef } from "react"; import { Group as AriaGroup, GroupProps as AriaGroupProps, } from "react-aria-components"; import { css } from "@emotion/react"; import { ComponentSize } from "@phoenix/components/types"; import { SizeProvider } from "@phoenix/contexts"; /** * A forwardRef wrapper around react-aria-components Group. * * Usage: * ```tsx * <Group ref={myRef} ...props /> * ``` */ const groupCSS = css` display: flex; align-items: center; gap: var(--ac-global-dimension-size-100); `; type GroupProps = AriaGroupProps & { size?: ComponentSize; }; export const Group = forwardRef<HTMLDivElement, GroupProps>( ({ size, ...props }, ref) => ( <SizeProvider size={size}> <AriaGroup {...props} ref={ref} css={groupCSS} className="ac-group react-aria-Group" /> </SizeProvider> ) ); Group.displayName = "Group";

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Arize-ai/phoenix'

If you have feedback or need assistance with the MCP directory API, please join our Discord server