funuicss
Version:
React and Next.js component UI Library for creating Easy and good looking websites with fewer lines of code. Elevate your web development experience with our cutting-edge React/Next.js component UI Library. Craft stunning websites effortlessly, boasting b
12 lines (11 loc) • 348 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.handleKeyDown = void 0;
// videoShortcuts.ts
var handleKeyDown = function (e, isPlaying, playVideo, pauseVideo) {
if (e.key === ' ') {
e.preventDefault();
isPlaying ? pauseVideo() : playVideo();
}
};
exports.handleKeyDown = handleKeyDown;