Skip to main content
Glama
deleonio
by deleonio
Button.tsx609 B
import { h, type FunctionalComponent as FC } from '@stencil/core'; import { KolButtonWcTag } from '../../core/component-names'; import type { InternalButtonProps } from '../../schema'; export type ButtonProps = Partial<InternalButtonProps> & { label: string; class?: string; onClick?: (event: MouseEvent) => void; }; const KolButtonFc: FC<ButtonProps> = (props) => { const { label, icons, hideLabel, disabled, onClick, ...other } = props; return <KolButtonWcTag _label={label} _disabled={disabled} _icons={icons} _hideLabel={hideLabel} _on={{ onClick }} {...other} />; }; export default KolButtonFc;

Latest Blog Posts

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/deleonio/public-ui-kolibri'

If you have feedback or need assistance with the MCP directory API, please join our Discord server