UNPKG

@cainiaofe/cn-ui-m

Version:
10 lines (9 loc) 713 B
import * as React from 'react'; import { CnBox, CnButton, CnDemoBlock, CnDemoPage } from "../../.."; export var 禁用按钮 = function () { return (React.createElement(CnDemoPage, { title: "\u7981\u7528\u6309\u94AE" }, React.createElement(CnDemoBlock, { title: "\u7981\u7528\u6309\u94AE" }, React.createElement(CnBox, { direction: "row", justify: "space-between", wrap: true }, React.createElement(CnButton, { type: "normal", disabled: true }, "Normal"), React.createElement(CnButton, { type: "primary", disabled: true }, "Primary"), React.createElement(CnButton, { type: "secondary", disabled: true }, "Button"))))); }; export default { title: 'demo/CnButton' };