import React from 'react';
import { storiesOf } from '@storybook/react';
import styled from 'styled-components';
import Tooltip from './Tooltip';
// Popper would position the tooltip absolutely. We just need to make sure we are pos:rel
const mockPopperProps = { style: { position: 'relative', top: '20px', left: '20px' } };
const Content = styled.div`
width: 100px;
height: 100px;
font-size: 16px;
text-align: center;
line-height: 100px;
background: #eee;
`;
storiesOf('basics/tooltip/Tooltip', module)
.add('basic, default', () => (
Text
))
.add('basic, default, bottom', () => (
Text
))
.add('basic, default, left', () => (
Text
))
.add('basic, default, right', () => (
Text
))
.add('no chrome', () => (
Text
));