"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