/** @jsx jsx */ import { Box, jsx } from "theme-ui" export const TabPanel = ({ children, value, index, ...props }) => { return {value === index && {children}} }