Norbert de Langen 63aad4da8c FIX linting
2019-03-05 18:09:41 +01:00

44 lines
1.2 KiB
JavaScript

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', () => (
<Tooltip hasChrome {...mockPopperProps}>
<Content>Text</Content>
</Tooltip>
))
.add('basic, default, bottom', () => (
<Tooltip hasChrome placement="bottom" {...mockPopperProps}>
<Content>Text</Content>
</Tooltip>
))
.add('basic, default, left', () => (
<Tooltip hasChrome placement="left" {...mockPopperProps}>
<Content>Text</Content>
</Tooltip>
))
.add('basic, default, right', () => (
<Tooltip placement="right" {...mockPopperProps}>
<Content>Text</Content>
</Tooltip>
))
.add('no chrome', () => (
<Tooltip {...mockPopperProps}>
<Content>Text</Content>
</Tooltip>
));