"use client";
import { BG } from "../../../components/layouts";
import Style from "./Cover.styled";
export default function Cover(props) {
    const height = props?.height || 32;
    return (<Style ref={props?.reference} style={props?.style} $height={height} $fullsize={props?.fullsize}>
            {props?.background && <BG {...props?.background}/>}
            {props?.children}
        </Style>);
}
//# sourceMappingURL=Cover.jsx.map