UNPKG

@gorazdo/material-you

Version:

Material You theme for @material-ui library

8 lines (7 loc) 293 B
import { ButtonBaseProps, Theme } from "@material-ui/core"; import { FC } from "react"; export interface ExpandButtonProps extends ButtonBaseProps { count?: number; outlineColor?: keyof Theme["palette"]["background"]; } export declare const ExpandButton: FC<ExpandButtonProps>;