mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 06:39:48 +00:00
4f39486eb7
* Migrating dimensions, latest SVG, stubbing sidebar * Revert "Migrating dimensions, latest SVG, stubbing sidebar" This reverts commit5014a68f52
. * Revert "Revert "Migrating dimensions, latest SVG, stubbing sidebar"" This reverts commit28c130c8d8
. * Post merge bootstrap & build * Linting * Updating Story Heirarchy * Migrating legacy tooltip component * Reverting spacing integration into core dimensions * Cleaning up comments, tweaking CSS var usage * Removing static height * Cleaning up static CSS values, re-organizing sliding panel, fixing search icon * adding flow def for autobind in new SB instance * PR feedback, removing new vars/updating markup * Fixing lint > flow error on type
57 lines
1.3 KiB
JavaScript
57 lines
1.3 KiB
JavaScript
import React from 'react';
|
|
import Tooltip from './tooltip';
|
|
|
|
export default { title: 'Tooltip' };
|
|
|
|
export const onTop = () => (
|
|
<div className="text-center">
|
|
<Tooltip message="Here is some extra info on top" position="top">
|
|
<button className="btn btn--clicky">Hover Me</button>
|
|
</Tooltip>
|
|
</div>
|
|
);
|
|
|
|
export const onRight = () => (
|
|
<div className="text-center">
|
|
<Tooltip message="Here is some extra info on the right" position="right">
|
|
<button className="btn btn--clicky">Hover Me</button>
|
|
</Tooltip>
|
|
</div>
|
|
);
|
|
|
|
export const onLeft = () => (
|
|
<div className="text-center">
|
|
<Tooltip message="Here is some extra info on the left" position="left">
|
|
<button className="btn btn--clicky">Hover Me</button>
|
|
</Tooltip>
|
|
</div>
|
|
);
|
|
|
|
export const withDelay = () => (
|
|
<div className="text-center">
|
|
<Tooltip message="This tooltip had a 900ms delay" delay={900}>
|
|
<button className="btn btn--clicky">Hover Me</button>
|
|
</Tooltip>
|
|
</div>
|
|
);
|
|
|
|
export const withChildren = () => {
|
|
const message = (
|
|
<React.Fragment>
|
|
This is a{' '}
|
|
<a href="#" onClick={e => e.preventDefault()}>
|
|
Link
|
|
</a>
|
|
.
|
|
</React.Fragment>
|
|
);
|
|
|
|
return (
|
|
<div className="text-center">
|
|
<Tooltip message={message}>
|
|
<button className="btn btn--clicky">Hover Me</button>
|
|
</Tooltip>
|
|
</div>
|
|
);
|
|
};
|