8 lines
402 B
JavaScript
8 lines
402 B
JavaScript
|
|
import { jsx as _jsx } from "react/jsx-runtime";
|
||
|
|
import cn from "classnames";
|
||
|
|
import baseStyles from "../../video.module.scss";
|
||
|
|
const PlayerExtension = ({ className, children, conteinerRef, ...rest }) => {
|
||
|
|
return (_jsx("div", { ref: conteinerRef, className: cn([baseStyles.videoMain, className]), ...rest, children: children }));
|
||
|
|
};
|
||
|
|
export default PlayerExtension;
|
||
|
|
//# sourceMappingURL=index.js.map
|