Skip to main content
Glama

@arizeai/phoenix-mcp

Official
by Arize-ai
Checkbox.stories.tsx1.25 kB
import { Meta, StoryFn } from "@storybook/react"; import { Checkbox } from "@phoenix/components"; const meta: Meta = { title: "Checkbox", component: Checkbox, parameters: { layout: "centered", }, }; export default meta; const Template: StoryFn<typeof Checkbox> = (args) => <Checkbox {...args} />; /** * Basic checkbox with label */ export const Default = Template.bind({}); Default.args = { children: "Checkbox label", }; /** * Pre-checked checkbox */ export const Checked = Template.bind({}); Checked.args = { children: "Checked checkbox", isSelected: true, }; /** * Disabled checkbox */ export const Disabled = Template.bind({}); Disabled.args = { children: "Disabled checkbox", isDisabled: true, }; /** * Checkbox in indeterminate state */ export const Indeterminate = Template.bind({}); Indeterminate.args = { children: "Indeterminate checkbox", isIndeterminate: true, }; /** * Checkbox with custom children content */ export const WithChildren = Template.bind({}); WithChildren.args = { children: ( <> <strong>Bold text</strong> and <em>italic text</em> </> ), }; /** * Checkbox with no label */ export const NoLabel = Template.bind({}); NoLabel.args = { children: null, };

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