@makeen.io/material-ui-kit
Version:
Makeen UI components kit. Based on material-ui.
12 lines (11 loc) • 473 B
TypeScript
import { Theme } from "@material-ui/core";
import { FabProps } from "@material-ui/core/Fab";
export declare type FabButtonProps = FabProps & {
customStyle?: string;
expanded: boolean;
icon?: JSX.Element;
size?: "small" | "medium" | "large" | "tiny";
theme: Theme;
};
declare const _default: import("styled-components").StyledComponent<({ icon, customStyle, expanded, ...rest }: any) => JSX.Element, any, FabButtonProps, never>;
export default _default;