material-ui-pickers-v4
Version:
React components, that implements material design pickers for material-ui v4 with updated material ui
10 lines (9 loc) • 409 B
TypeScript
import * as React from 'react';
import { ToolbarProps } from '@material-ui/core';
import { ExtendMui } from '../typings/extendMui';
export declare const useStyles: (props?: any) => Record<"toolbar" | "toolbarLandscape", string>;
interface PickerToolbarProps extends ExtendMui<ToolbarProps> {
isLandscape: boolean;
}
declare const PickerToolbar: React.FC<PickerToolbarProps>;
export default PickerToolbar;