jsketcher/modules/ui/components/controls/Button.jsx
2018-01-19 01:25:26 -08:00

17 lines
243 B
JavaScript

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