Skip to main content
Glama

@arizeai/phoenix-mcp

Official
by Arize-ai
ProgressBar.tsx784 B
import { forwardRef, Ref } from "react"; import { ProgressBar as ReactAriaProgressBar } from "react-aria-components"; import { progressBarCSS } from "./styles"; import { ProgressBarProps } from "./types"; function ProgressBar( { width, height, ...props }: ProgressBarProps, ref: Ref<HTMLDivElement> ) { return ( <ReactAriaProgressBar {...props} ref={ref} css={progressBarCSS} style={{ width, height }} > {({ percentage }) => ( <div className="progress-bar__track"> <div className="progress-bar__fill" style={{ width: percentage + "%" }} /> </div> )} </ReactAriaProgressBar> ); } const _ProgressBar = forwardRef(ProgressBar); export { _ProgressBar as ProgressBar };

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