mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-07 17:04:58 +01:00
17 lines
216 B
JavaScript
17 lines
216 B
JavaScript
import React from 'react';
|
|
|
|
import ls from './Button.less'
|
|
|
|
export default function Button({text, type}) {
|
|
|
|
return <button className={ls[type]}>{text}</button>
|
|
|
|
}
|
|
|
|
Button.defaultProps = {
|
|
type: 'neutral',
|
|
};
|
|
|
|
|
|
|
|
|