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