jsketcher/modules/ui/components/controls/Button.jsx
2018-02-07 00:50:26 -08:00

17 lines
251 B
JavaScript

import React from 'react';
import ls from './Button.less'
export default function Button({type, onClick, children}) {
return <button onClick={onClick} className={ls[type]}>{children}</button>
}
Button.defaultProps = {
type: 'neutral',
};