xxxxxxxxxx
// add props to the container :fluid
// inside the countainer query
${props=> props.fluid && css`
padding:10px;
marigin
-----
`}
xxxxxxxxxx
mport styled from "styled-components"
const Div = styled.div`
padding: 10px;
color: palevioletred;
`
const InheritedDiv = styled(Div)`
border: 1px solid palevioletred;
`