Skip to main content
Glama

@arizeai/phoenix-mcp

Official
by Arize-ai
Checkbox.tsx1.02 kB
import { forwardRef, Ref } from "react"; import { Checkbox as AriaCheckbox } from "react-aria-components"; import { checkboxCSS } from "@phoenix/components/checkbox/styles"; import { CheckboxProps } from "@phoenix/components/checkbox/types"; function Checkbox(props: CheckboxProps, ref: Ref<HTMLLabelElement>) { const { children, isHovered, ...restProps } = props; return ( <AriaCheckbox {...restProps} ref={ref} css={checkboxCSS} data-is-hovered={isHovered || undefined} > {({ isIndeterminate }) => ( <> <div className="checkbox"> <svg viewBox="0 0 18 18" aria-hidden="true"> {isIndeterminate ? ( <rect x={1} y={7.5} width={15} height={3} /> ) : ( <polyline points="1 9 7 14 15 4" /> )} </svg> </div> {children} </> )} </AriaCheckbox> ); } const _Checkbox = forwardRef(Checkbox); export { _Checkbox as Checkbox };

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