@wordpress/components
Version:
UI components for WordPress.
27 lines (24 loc) • 432 B
JavaScript
/**
* Internal dependencies
*/
import { Text } from '../../../text';
import { Tooltip } from '../index';
export default {
component: Tooltip,
title: 'G2 Components (Experimental)/Tooltip',
};
export const _default = () => {
return (
<Tooltip
content="Tooltip"
visible
gutter={ 10 }
shortcut={ {
display: 'meta + 1',
ariaLabel: 'shortcut-aria-label',
} }
>
<Text>Hello</Text>
</Tooltip>
);
};