UNPKG

@coinmeca/ui

Version:

This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).

11 lines 440 B
"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