@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).
12 lines • 566 B
JSX
"use client";
import Style from "./Col.styled";
export default function Col(props) {
const gap = props?.gap === 0 ? 0 : props?.gap || 4;
const fit = props?.fit || false;
const fill = props?.fill || false;
const reverse = props?.reverse || false;
return (<Style title={props?.title} style={props?.style} $gap={gap} $fit={fit} $fill={fill} $responsive={props?.responsive} $reverse={reverse} data-col={props?.align} data-show={props?.show} data-hide={props?.hide}>
{props.children}
</Style>);
}
//# sourceMappingURL=Col.jsx.map