web3-mq-react
Version:
web3-mq-react-components
13 lines (12 loc) • 375 B
TypeScript
import React from 'react';
export declare type ActionBtnItem = {
key: string;
com: React.ReactElement;
msg?: string;
onClick?: (event: React.BaseSyntheticEvent) => void;
};
export declare type ActionBtnsProps = {
className?: string;
style?: React.CSSProperties;
};
export declare const ActionBtns: (props: ActionBtnsProps) => JSX.Element;