UNPKG

vcc-ui

Version:

A React library for building user interfaces at Volvo Cars

11 lines (10 loc) 295 B
import React from 'react'; export interface Config<LinkProps = any> { linkComponent: React.ElementType<LinkProps>; locale?: string; v3Button?: boolean; } export declare const defaultConfig: { linkComponent: "a"; }; export declare const ConfigContext: React.Context<Config<any>>;