import React, { Component } from 'react'; import './index.less'; import Touch from '@src/containers/Touch'; export default class Button extends Component { render() { const { className = '', width, margin, size = 'basic', theme = 'default', children, onClick, radius, block, disabled, } = this.props; return (
onClick && onClick()} > {children}
); } }