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
image.tsx•650 B
import React from 'react';
import { KolButtonLink } from '@public-ui/react-v19';
import type { FC } from 'react';
import { SampleDescription } from '../SampleDescription';
export const ButtonLinkImage: FC = () => (
<>
<SampleDescription>
<p>This sample shows KolButtonLink with slot-content instead of a label. The sample uses an image as content.</p>
</SampleDescription>
<div className="grid gap-4">
<KolButtonLink _label="I am a link that is rendered as text" />
<KolButtonLink _label="">
<img alt="Presentation of the KoliBri theming" slot="expert" src="abgrenzung.jpg" width="300" />
</KolButtonLink>
</div>
</>
);