UNPKG

react-conventions

Version:

An open source set of React components that implement Ambassador's Design and UX patterns.

9 lines (6 loc) 777 B
import React from 'react' import Tooltip from 'react-conventions/lib/Tooltip' const ExampleTooltipDefault = () => ( <p>Umami four dollar toast craft beer polaroid <Tooltip content="Testing the right tooltip" tooltipPlacement={'right'}><a href="#">right</a></Tooltip> tooltip, synth keytar echo park whatever sustainable <Tooltip content="Testing the left tooltip" tooltipPlacement={'left'}><a href="#">left</a></Tooltip> tooltip. Poutine cardigan gentrify, tumblr meggings <Tooltip content="Testing the bottom tooltip" tooltipPlacement={'bottom'}><a href="#">bottom</a></Tooltip> tooltip sriracha brunch offal plaid beard. Cronut cliche cred pabst <Tooltip content="Testing the top tooltip"><a href="#">top</a></Tooltip> tooltip.</p> ) export default ExampleTooltipDefault