@salesforce/design-system-react
Version:
Salesforce Lightning Design System for React
28 lines (27 loc) • 1.09 kB
JavaScript
import React from 'react';
import createReactClass from 'create-react-class';
import IconSettings from "../../../../components/icon-settings";
import Tooltip from "../../../../components/tooltip"; // `~` is replaced with design-system-react at runtime
import Icon from "../../../../components/icon";
var Example = createReactClass({
displayName: 'TooltipExample',
render: function render() {
return React.createElement(IconSettings, {
iconPath: "/assets/icons"
}, React.createElement(Tooltip, {
align: "top left",
content: "Sit nulla est ex deserunt exercitation anim occaecat. Nostrud ullamco deserunt aute id consequat veniam incididunt duis in sint irure nisi."
}, React.createElement("a", {
href: "javascript:void(0)"
}, React.createElement(Icon, {
assistiveText: {
label: 'Tooltip with icon'
},
category: "utility",
name: "info",
size: "x-small"
}))));
}
});
export default Example; // export is replaced with `ReactDOM.render(<Example />, mountNode);` at runtime
//# sourceMappingURL=base.js.map