import { FC, PropsWithChildren } from 'react'; interface IFabProps { /** * css class */ className?: string; /** * 按钮大小 * @default normal */ size?: 'normal' | 'small'; /** * 图标名称或图片链接 */ icon?: string; /** * 点击按钮时的回调 */ onClick?: () => void; } declare const Fab: FC>; export default Fab;