Version: 1.xIconsID: vIcons | Type: PluginThis plugin loads the default Vime icons into the browser.Defaults#playpausecaptionsOncaptionsOffenterFullscreenexitFullscreenenterPiPexitPiPseekForwardseekBackwardvolumeLowvolumeHighvolumeMutesettingscheckmarkSetup#BasicManagerimport { Player, Icons } from '@vime-js/complete'; // ... const player = new Player({ target, props: { plugins: [Icons], },});Copyimport { Player, Icons } from '@vime-js/complete'; // ... player .getPluginsManager() .addPlugin(Icons) .then(icons => { // ... });Copy