gov-gui
Version:
Gov UI Component Library Typscript Build
11 lines (10 loc) • 319 B
TypeScript
export interface GlobalProps {
styles?: {
[key: string]: string;
};
classes?: string;
variant?: string;
size?: string;
}
export declare const injectGlobalCSS: (shadowRoot?: ShadowRoot) => void;
export declare const getGlobalPropsClasses: ({ classes, variant, size }: GlobalProps) => string;