@material-ui/pickers
Version:
React components, that implements material design pickers for material-ui v4
11 lines (10 loc) • 462 B
TypeScript
import * as React from 'react';
import { TypographyProps } from '@material-ui/core/Typography';
import { ExtendMui } from '../typings/extendMui';
export interface ToolbarTextProps extends ExtendMui<TypographyProps> {
selected?: boolean;
label: string;
}
export declare const useStyles: (props?: any) => Record<"toolbarTxt" | "toolbarBtnSelected", string>;
declare const ToolbarText: React.FunctionComponent<ToolbarTextProps>;
export default ToolbarText;