You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
379 B
13 lines
379 B
2 years ago
|
import tippy from 'tippy.js';
|
||
|
|
||
|
export function createTippy(target, opts) {
|
||
|
return tippy(target, {
|
||
|
appendTo: document.body,
|
||
|
placement: 'top-start',
|
||
|
animation: false,
|
||
|
allowHTML: true,
|
||
|
arrow: `<svg width="16" height="7"><path d="m0 7 8-7 8 7Z" class="tippy-svg-arrow-outer"/><path d="m0 8 8-7 8 7Z" class="tippy-svg-arrow-inner"/></svg>`,
|
||
|
...opts,
|
||
|
});
|
||
|
}
|