Skip to main content
Glama

@arizeai/phoenix-mcp

Official
by Arize-ai
Heading.tsx1.05 kB
import { forwardRef, Ref } from "react"; import { Heading as AriaHeading, HeadingProps as AriaHeadingProps, } from "react-aria-components"; import { css } from "@emotion/react"; import { classNames } from "@arizeai/components"; import { headingBaseCSS, textBaseCSS } from "./styles"; import { Weight } from "./types"; export interface HeadingProps extends AriaHeadingProps { /** * Sets the font weight * @default 'normal' */ weight?: Weight; } /** * Heading is used to create various levels of typographic hierarchies. */ function Heading(props: HeadingProps, ref: Ref<HTMLHeadingElement>) { const { children, level = 3, weight = "normal", ...otherProps } = props; return ( <AriaHeading {...otherProps} css={css(textBaseCSS, headingBaseCSS)} className={classNames("ac-Heading", props.className)} ref={ref} level={level} data-level={level} data-weight={weight} > {children} </AriaHeading> ); } const _Heading = forwardRef(Heading); export { _Heading as Heading };

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