UNPKG

vcc-ui

Version:

A React library for building user interfaces at Volvo Cars

9 lines (8 loc) 287 B
import { CurrentTheme } from '../types/shared'; export interface GetThemeOptions { variant?: 'light' | 'dark'; locale?: string; direction?: 'ltr' | 'rtl'; } /** @deprecated */ export declare function getTheme({ variant, locale, direction, }?: GetThemeOptions): CurrentTheme;