@unicity/design-system
Version:
A comprehensive React component library built on Material-UI with advanced theming capabilities including neumorphism design support
22 lines • 578 B
TypeScript
import React from 'react';
import { FabProps as MuiFabProps } from '@mui/material';
export interface FabProps extends MuiFabProps {
/**
* The tooltip text to display
*/
tooltip?: string;
/**
* Whether the FAB should pulse
*/
pulse?: boolean;
/**
* The position of the FAB when fixed
*/
position?: 'bottom-right' | 'bottom-left' | 'top-right' | 'top-left';
/**
* Whether the FAB should be fixed positioned
*/
fixed?: boolean;
}
export declare const Fab: React.FC<FabProps>;
//# sourceMappingURL=Fab.d.ts.map