Gostaria de saber se está correto é o que pode ser melhorado:
obs: não coloquei font-family pois estou esperando o professor abordar o assunto de fontes
import styled from "styled-components";
import search from "./search.png";
const StyledSearch = styled.div`
display: inline-flex;
justify-content: space-between;
width: 40rem;
padding: 12px 16px;
align-items: center;
background:none;
border:2px solid var(--Degrad-com-rosa, #C98CF1);
border-radius: 10px;
gap: auto;
input {
background: none;
border: none;
color: #FFF;
font-family: Gandhi Sans;
font-size: 1.25rem;
font-style: normal;
font-weight: 400;
line-height: 1.25rem;
&:focus {
background: none;
outline: none;
}
&::placeholder {
color: #d9d9d9;
}
}
img {
max-width: 32px;
}
`;
const TextBox = () => {
return (
<StyledSearch>
<input type="text" placeholder="O que você procura?" />
<img src={search} alt="buscar" />
</StyledSearch>
);
};
export default TextBox;