import { jsx } from "react/jsx-runtime"; import { cn } from "@videojs/utils/style"; //#region src/presets/background/skin.tsx function BackgroundVideoSkin(props) { const { children, className, ...rest } = props; return /* @__PURE__ */ jsx("div", { className: cn("media-background-skin", className), ...rest, children }); } //#endregion export { BackgroundVideoSkin }; //# sourceMappingURL=skin.js.map