@lifi/widget
Version:
LI.FI Widget for cross-chain bridging and swapping. It will drive your multi-chain strategy and attract new users from everywhere.
28 lines (27 loc) • 895 B
TypeScript
/// <reference types="react" />
import type { PaletteMode } from '@mui/material';
import type { ThemeConfig } from '../types';
declare module '@mui/material/styles' {
interface TypographyVariants {
'@supports (font-variation-settings: normal)': React.CSSProperties;
}
interface TypographyVariantsOptions {
'@supports (font-variation-settings: normal)'?: React.CSSProperties;
}
interface Shape {
borderRadius: number;
borderRadiusSecondary: number;
}
interface Theme {
shape: Shape;
}
interface ThemeOptions {
shape?: Partial<Shape>;
}
}
declare module '@mui/material/Typography' {
interface TypographyPropsVariantOverrides {
'@supports (font-variation-settings: normal)': true;
}
}
export declare const createTheme: (mode: PaletteMode, theme?: ThemeConfig) => import("@mui/material").Theme;