zmp-react
Version:
Build full featured iOS & Android apps using ZMP & React
16 lines (11 loc) • 349 B
TypeScript
import * as React from 'react';
interface FabBackdropProps {
slot?: string;
id?: string | number;
className?: string;
style?: React.CSSProperties;
ref?: React.MutableRefObject<{el: HTMLElement | null}>;
children?: React.ReactNode;
}
declare const FabBackdrop: React.FunctionComponent<FabBackdropProps>;
export default FabBackdrop;