@jengaui/root
Version:
Jenga UI Root component in React
20 lines (17 loc) • 435 B
TypeScript
import { BaseProps } from 'tastycss';
interface JengaRootProps extends BaseProps {
tokens?: {
[key: string]: string;
};
bodyStyles?: {
[key: string]: string;
};
fonts?: boolean;
publicUrl?: string;
router?: any;
font?: string;
monospaceFont?: string;
applyLegacyTokens?: boolean;
}
declare function Root(allProps: JengaRootProps): JSX.Element;
export { JengaRootProps, Root };