Shadis/src/Dashboard/Dashboard.props.ts

16 lines
339 B
TypeScript
Executable File

import { ManagedClasses } from "@microsoft/fast-jss-manager-react";
/**
* Class name contract for the component
*/
export interface DashboardClassNameContract {
dashboard__frozen?: string;
}
/**
* Props for the component
*/
export interface DashboardProps extends ManagedClasses<DashboardClassNameContract> {
frozen?: boolean;
}