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 React from 'react';
import { KolIcon } from '@public-ui/react-v19';
import type { FC } from 'react';
import { SampleDescription } from '../SampleDescription';
export const IconBasic: FC = () => (
<>
<SampleDescription>
<p>KolIcon renders codicon icons. This sample shows regular icons and one with a custom style-property, changing the icon color.</p>
</SampleDescription>
<div className="grid gap-4">
<KolIcon className="block" _label="" _icons="kolicon-alert-info" />
<KolIcon className="block" _label="" _icons="kolicon-kolibri" />
<KolIcon className="block" _label="" _icons="kolicon-house" />
<KolIcon className="block" _label="" _icons="kolicon-settings" />
<KolIcon
className="block w-[1em] h-[1em]"
style={{
color: 'red',
}}
_label=""
_icons="kolicon-house"
/>
</div>
</>
);