We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/deleonio/public-ui-kolibri'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import type { FC } from 'react';
import React from 'react';
import { KolInputRadio } from '@public-ui/react-v19';
import type { AlignPropType } from '@public-ui/components';
const options = ['left', 'top', 'right', 'bottom'].map((align) => ({
label: align,
value: align,
}));
type DrawerRadioAlignProps = {
value?: AlignPropType;
onChange?: (_: Event, value: unknown) => void;
};
export const DrawerRadioAlign: FC<DrawerRadioAlignProps> = ({ value = 'left', onChange }) => {
return (
<div className="grid gap-4">
<div className="container my-4 d-grid gap-4">
<KolInputRadio _label="Drawer alignment" _value={value} _options={options} _orientation="horizontal" _on={{ onChange }} />
</div>
</div>
);
};