mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
15 lines
335 B
TypeScript
15 lines
335 B
TypeScript
import React, { ButtonHTMLAttributes } from 'react';
|
|
|
|
export interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
|
|
/**
|
|
* A label to show on the button
|
|
*/
|
|
label: string;
|
|
}
|
|
|
|
export const Button = ({ label = 'Hello', ...props }: ButtonProps) => (
|
|
<button type="button" {...props}>
|
|
{label}
|
|
</button>
|
|
);
|