mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:01:06 +08:00
27 lines
457 B
TypeScript
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;
|