Posts by Leonardo Siqueira • 13 points
1 post
-
-1
votes1
answer78
viewsQ: How to change the style of a Komponent that was imported into React with Styled-Component
I created a component called "Searchbox": const Input = styled.input` border: 1px solid black; width: 450px; margin-right: ${props => props.marginRight == "ativo" ? '100px' : '0px'}; `; I…