@amaui/style-react
Version:
Amaui CSS in JS styling solution for React
15 lines (14 loc) • 461 B
TypeScript
import React from 'react';
import { IAmauiTheme } from '@amaui/style/AmauiTheme';
import { ThemeRequired } from '../style';
export interface IThemeValue extends ThemeRequired {
updateWithRerender: (value: IAmauiTheme) => ThemeRequired;
}
export interface ITheme extends React.HTMLAttributes<any> {
root?: boolean;
value?: IAmauiTheme;
addCssVariables?: boolean;
children?: any;
}
declare const Theme: React.FC<ITheme>;
export default Theme;