mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-07 00:45:08 +01:00
17 lines
243 B
JavaScript
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',
|
|
};
|
|
|
|
|
|
|
|
|