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
basic.tsx•528 B
import React from 'react';
import { KolAbbr } from '@public-ui/react-v19';
import { SampleDescription } from '../SampleDescription';
import type { FC } from 'react';
export const AbbrBasic: FC = () => (
<>
<SampleDescription>
<p>KolAbbr shows an abbreviation and uses kol-tooltip-wc to display the long form, if provided.</p>
</SampleDescription>
<p>
I am <KolAbbr _label="as an example">e.g.</KolAbbr> an abbreviation.
</p>
<p>
I am <KolAbbr>e.g.</KolAbbr> an abbreviation without label.
</p>
</>
);