We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0061310 commit b1888d8Copy full SHA for b1888d8
1 file changed
packages/eui/src/components/tool_tip/tool_tip.stories.tsx
@@ -72,6 +72,21 @@ export const Playground: Story = {
72
}),
73
};
74
75
+export const TESTING_EXAMPLE: Story = {
76
+ args: {
77
+ children: <EuiButton>Tooltip trigger</EuiButton>,
78
+ content: 'tooltip content',
79
+ },
80
+ render: (args) => {
81
+ return (
82
+ <EuiFlexGroup justifyContent="center">
83
+ <EuiToolTip {...args} />
84
85
+ </EuiFlexGroup>
86
+ );
87
88
+};
89
+
90
/**
91
* VRT only stories
92
*/
0 commit comments