@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 • 388 B
JSX
"use client";
import { memo } from "react";
import Style from "./TabContent.styled";
function TabContent(props) {
const active = props?.active || false;
const fix = props?.fix || false;
return (<Style $active={active} $fix={fix} style={props?.style}>
{props?.children}
</Style>);
}
export default memo(TabContent);
//# sourceMappingURL=TabContent.jsx.map