2020-01-03 12:49:03 +08:00

27 lines
457 B
TypeScript

import React, { FunctionComponent } from 'react';
export type Type = 'default' | 'action';
interface Props {
/**
* Click event handler
* @default null
*/
onClick?: () => void;
/**
* Button type yo
*/
type?: Type;
}
const Button: FunctionComponent<Props> = ({ children, type = 'default', onClick }) => {
return (
<button type="button" onClick={onClick}>
{type}: {children}
</button>
);
};
export default Button;