Skip to main content
Glama

@arizeai/phoenix-mcp

Official
by Arize-ai
TableExpandButton.tsx959 B
import { css } from "@emotion/react"; import { Icon, Icons } from "@phoenix/components"; type TableExpandButtonProps = { onClick: (event: unknown) => void; ["aria-label"]: string; isExpanded: boolean; }; export function TableExpandButton(props: TableExpandButtonProps) { return ( <button className="button--reset" onClick={(e) => { // Stop the propagation to prevent the row from sorting e.stopPropagation(); props.onClick(e); }} aria-label={props["aria-label"]} css={css` color: var(--ac-global-text-color-white-900); .ac-icon-wrap { font-size: 1.2rem; } &:hover { color: var(--ac-global-color-primary); } `} > <Icon svg={ props.isExpanded ? ( <Icons.ChevronDownOutline /> ) : ( <Icons.ChevronRightOutline /> ) } /> </button> ); }

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