export interface Tooltip { style?: React.CSSProperties, text?: string } export const defaultTooltipStyle = { borderColor: '#5A5A5A', borderStyle: 'solid', borderWidth: '1px', borderRadius: '5px', color: 'white', padding: '5px', fontSize: '15px', textShadow: '1px 1px 2px black, 0 0 1em black, 0 0 0.2em black' // fontSize: '15px' }