@antmjs/vantui
Version:
一套适用于Taro3及React的vantui组件库
26 lines • 664 B
JavaScript
import { Button, Space } from '@antmjs/vantui';
import { jsx as _jsx } from "react/jsx-runtime";
import { jsxs as _jsxs } from "react/jsx-runtime";
export default function Demo() {
return /*#__PURE__*/_jsxs(Space, {
justify: "center",
align: "end",
block: true,
children: [/*#__PURE__*/_jsx(Button, {
type: "primary",
children: "\u6309\u94AE1"
}), /*#__PURE__*/_jsx(Button, {
type: "warning",
style: {
height: '50px'
},
children: "\u6309\u94AE2"
}), /*#__PURE__*/_jsx(Button, {
type: "danger",
style: {
height: '80px'
},
children: "\u6309\u94AE3"
})]
});
}