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
short-key.tsx•830 B
import type { FC } from 'react';
import React from 'react';
import { KolLink } from '@public-ui/react-v19';
import { SampleDescription } from '../SampleDescription';
export const LinkShortKey: FC = () => (
<>
<SampleDescription>
<p>
This sample shows KolButton with short key without functionality. The short key is purely visual. Its functionality needs to be developed separately.
</p>
</SampleDescription>
<div className="grid gap-4">
<KolLink _href="#/back-page" _label="With S short key" _shortKey="S" />
<KolLink _href="#/back-page" _label="Very small s" _shortKey="s" />
<KolLink _href="#/back-page" _label="Short key does not appear in label" _shortKey="s" />
<KolLink _hideLabel _icons="kolicon-house" _href="#/back-page" _label="short key without label" _shortKey="s" />
</div>
</>
);