import type { Player } from '@oplayer/core' import { $ } from '@oplayer/core' import { Icons } from '../functions' import { line, wrap } from './Loading.style' const render = (_: Player, el: HTMLElement) => { const $dom = $.create( `div.${wrap}`, { 'aria-label': 'Loading' }, `${Icons.get('loadingIndicator') || `
`}` ) $.render($dom, el) } export default render