mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 06:51:19 +08:00
20 lines
362 B
TypeScript
20 lines
362 B
TypeScript
import React from 'react';
|
||
import PropTypes from 'prop-types';
|
||
|
||
export const EmojiButton = ({ label, ...props }: { label: string }) => (
|
||
<button type="button" {...props}>
|
||
⚠️ {label}
|
||
</button>
|
||
);
|
||
|
||
EmojiButton.propTypes = {
|
||
/**
|
||
* A label to show on the button
|
||
*/
|
||
label: PropTypes.string,
|
||
};
|
||
|
||
EmojiButton.defaultProps = {
|
||
label: 'Hello',
|
||
};
|