Как получить props в sass
<Component width='2rem' />
-- styled-components
const Component = styled.div`
width: ${props => props.width}
`
Как в sass сделать тоже самое ?
<Component width='2rem' />
-- styled-components
const Component = styled.div`
width: ${props => props.width}
`
Как в sass сделать тоже самое ?