mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-06 16:33:15 +01:00
15 lines
262 B
JavaScript
15 lines
262 B
JavaScript
import React from 'react';
|
|
|
|
import ls from './SymbolButton.less';
|
|
|
|
export default function SymbolButton({type, onClick, children}) {
|
|
return <div className={ls[type]} onClick={onClick}>{children}</div>
|
|
}
|
|
|
|
SymbolButton.defaultProps = {
|
|
type: 'neutral',
|
|
};
|
|
|
|
|
|
|
|
|