gd-sprest-js
Version:
SharePoint 2013/Online js components.
15 lines (14 loc) • 348 B
TypeScript
import { IProps } from ".";
export interface IButtonProps extends IProps {
/**
* Set to true, to disable the button.
* @default false
*/
disable?: boolean;
/** The button url. */
href?: string;
/** The click event */
onClick?: (btn?: HTMLButtonElement) => void;
/** The button text */
text: string;
}