mirror of
https://github.com/facebook/react.git
synced 2026-02-26 04:04:59 +00:00
39 lines
711 B
JavaScript
39 lines
711 B
JavaScript
// @flow
|
|
|
|
import React from 'react';
|
|
import Tooltip from '@reach/tooltip';
|
|
|
|
import styles from './Button.css';
|
|
import tooltipStyles from './Tooltip.css';
|
|
|
|
type Props = {
|
|
children: React$Node,
|
|
className?: string,
|
|
title?: string,
|
|
};
|
|
|
|
export default function Button({
|
|
children,
|
|
className = '',
|
|
title = '',
|
|
...rest
|
|
}: Props) {
|
|
let button = (
|
|
<button className={`${styles.Button} ${className}`} {...rest}>
|
|
<span className={`${styles.ButtonContent} ${className}`} tabIndex={-1}>
|
|
{children}
|
|
</span>
|
|
</button>
|
|
);
|
|
|
|
if (title) {
|
|
button = (
|
|
<Tooltip className={tooltipStyles.Tooltip} label={title}>
|
|
{button}
|
|
</Tooltip>
|
|
);
|
|
}
|
|
|
|
return button;
|
|
}
|