// @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 = (
);
if (title) {
button = (
{button}
);
}
return button;
}