mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
15 lines
410 B
JavaScript
15 lines
410 B
JavaScript
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
|