gd-sprest-js
Version:
SharePoint 2013/Online js components.
16 lines (15 loc) • 492 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Button
*/
exports.Button = function (props) {
// Return the template
return [
props.href ? '<a href="' + props.href + '">' : '',
'<button class="ms-Button ' + (props.className || "") + '"' + (props.disable ? " disabled" : "") + '>',
'<span class="ms-Button-label">' + (props.text || "") + '</span>',
'</button>',
props.href ? '</a>' : ''
].join('\n');
};