import { inject } from 'vue-demi' import type Scrollbar from 'smooth-scrollbar' import type { ShallowRef } from 'vue-demi' import { smoothScrollbarKey } from '../shared/symbol' /** * Inject `smooth-scrollbar` instance from context */ export function /* #__PURE__ */ useScrollbarInject() { return inject(smoothScrollbarKey) as ShallowRef }