mistui-kit
Version:
**👉 [Try MistUi Live](https://gilded-tanuki-0eb52b.netlify.app/) — interactive playground & docs**
30 lines (29 loc) • 1.11 kB
TypeScript
import React from 'react';
export { colors, variants, sizes, shadows, textShadows, variantsText } from './meta';
export declare const colorsCustom: string[];
export declare function CodeBlock({ code }: {
code: any;
}): import("react/jsx-runtime").JSX.Element;
export declare function Grid({ children, className }: {
children: React.ReactNode;
className?: HTMLDivElement['className'];
}): import("react/jsx-runtime").JSX.Element;
export declare function Section({ title, description, children, code, dot, className }: {
title: string;
description: string;
children: React.ReactNode;
code?: string;
className?: string;
dot?: React.ReactNode | 'hot';
}): import("react/jsx-runtime").JSX.Element;
type TypeVariants = 'string' | 'number' | 'boolean' | 'array' | 'object' | 'enum' | 'func';
type MetaProp = {
default?: string;
description: string;
type: TypeVariants;
values: TypeVariants[] | MetaProp[];
};
export declare function TypeTable({ preview, meta }: {
preview: string;
meta: Record<string, MetaProp>;
}): import("react/jsx-runtime").JSX.Element;