'use client';
import { styled } from 'styled-components';
const Style = styled.div `
	position: relative;
	width: 100%;
	height: 100%;
	overflow: ${({ $scroll }) => ($scroll ? 'auto' : 'hidden')};
`;
export default Style;
//# sourceMappingURL=TabContainer.styled.jsx.map