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
custom.tsx•574 B
import { SampleDescription } from '../SampleDescription';
import './custom.css';
import React from 'react';
import { KolSpin } from '@public-ui/react-v19';
import type { FC } from 'react';
export const SpinCustom: FC = () => (
<>
<SampleDescription>
<p>
This sample shows a custom loading animation. Using the expert slot, it is possible to insert custom animations. Custom animations are not necessarily
barrier-free.
</p>
</SampleDescription>
<KolSpin _show _variant="none">
<span slot="expert" className="loader"></span>
</KolSpin>
</>
);