zmp-react
Version:
Build full featured iOS & Android apps using ZMP & React
23 lines (18 loc) • 507 B
TypeScript
import * as React from 'react';
interface ActionsGroupProps {
slot?: string;
id?: string | number;
className?: string;
style?: React.CSSProperties;
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 ActionsGroup: React.FunctionComponent<ActionsGroupProps>;
export default ActionsGroup;