Norbert de Langen c2bbe43d02
stage0
2022-07-21 11:24:07 +02:00

20 lines
362 B
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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',
};