import styled from "styled-components"; import * as React from 'react'; interface Props { show: boolean; } const StyledTabItem = styled.div ` padding: 10px; ${props => !props.show && ` display: none; `} `; export { StyledTabItem };