enchoice-fabric-react-lib
Version:
This project was created to integrate Microsoft Fabric React
16 lines (15 loc) • 509 B
TypeScript
import { ITheme, IStyle } from 'office-ui-fabric-react/lib/Styling';
import { IStyleFunctionOrObject } from 'office-ui-fabric-react/lib/Utilities';
export interface IDummyComponentProps {
message: string;
styles?: IStyleFunctionOrObject<IDummyComponentStyleProps, IDummyComponentStyles>;
theme?: ITheme;
className?: string;
}
export interface IDummyComponentStyleProps {
theme: ITheme;
className?: string;
}
export interface IDummyComponentStyles {
root?: IStyle;
}