@amaui/ui-react
Version: 
UI for React
23 lines (22 loc) • 782 B
TypeScript
import React from 'react';
import { IIconButton } from '../IconButton/IconButton';
import { IElement, IElementReference, IPropsAny } from '../types';
export interface ISpeedDialItem extends IIconButton {
    open?: boolean;
    name?: IElement;
    label?: IElement;
    tooltipOpen?: boolean;
    closeOnClick?: boolean;
    render?: (values: {
        onBlur: (event: React.FocusEvent<any>) => any;
        onFocus: (event: React.FocusEvent<any>) => any;
        TooltipProps: any;
        [p: string]: any;
    }) => IElement;
    onBlur?: (event: React.FocusEvent<any>) => any;
    onFocus?: (event: React.FocusEvent<any>) => any;
    Icon?: IElementReference;
    TooltipProps?: IPropsAny;
}
declare const SpeedDialItem: React.FC<ISpeedDialItem>;
export default SpeedDialItem;