zmp-react
Version:
Build full featured iOS & Android apps using ZMP & React
27 lines (22 loc) • 606 B
TypeScript
import * as React from 'react';
interface ActionsButtonProps {
slot?: string;
id?: string | number;
className?: string;
style?: React.CSSProperties;
bold?: boolean;
close?: boolean;
negative?: boolean;
onClick ?: (event?: any) => void;
ref?: React.MutableRefObject<{el: HTMLElement | null}>;
color?: string;
colorTheme?: string;
textColor?: string;
bgColor?: string;
borderColor?: string;
rippleColor?: string;
themeDark?: boolean;
children?: React.ReactNode;
}
declare const ActionsButton: React.FunctionComponent<ActionsButtonProps>;
export default ActionsButton;