UNPKG

@etsoo/materialui

Version:

TypeScript Material-UI Implementation

33 lines (27 loc) 514 B
import { FabPropsColorOverrides, PropTypes } from "@mui/material"; import { OverridableStringUnion } from "@mui/types"; /** * Custom fab size */ export type CustomFabSize = "small" | "medium" | "large"; /** * Custom fab props */ export interface CustomFabProps { /** * Color */ color?: OverridableStringUnion<PropTypes.Color, FabPropsColorOverrides>; /** * Fab size */ size?: CustomFabSize; /** * Scroll target */ target?: any; /** * Fab title */ title?: string; }