wix-style-react
Version:
wix-style-react
23 lines (21 loc) • 466 B
JavaScript
import React from 'react';
import Tooltip from 'wix-style-react/Tooltip';
import styles from './Example.scss';
export default (function () {
return React.createElement(
Tooltip,
{
active: true,
placement: 'right',
alignment: 'center',
content: 'Right Center',
showTrigger: 'custom',
hideTrigger: 'custom'
},
React.createElement(
'div',
{ className: styles.box },
'Right Center'
)
);
});