mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-07 17:04:58 +01:00
21 lines
362 B
TypeScript
21 lines
362 B
TypeScript
import React from 'react';
|
|
|
|
import cx from 'classnames';
|
|
|
|
export default function Button({type, onClick, className, ...props}: {
|
|
type?: string,
|
|
onClick: () => void,
|
|
className? : string,
|
|
children?: any,
|
|
} & JSX.IntrinsicAttributes) {
|
|
|
|
type = type || 'neutral';
|
|
|
|
return <button onClick={onClick} className={cx(type, className)} {...props} />
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|