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