Olá pessoal, no meu código está dando erro no input onde diz que está indefinido.
código:
import styled from "styled-components";
const Input = styled.input` order: 1px solid #FFF; background: transparent; border: 1px solid #FFF; padding: 20px 140px; border-radius: 50px; width: 200px; color: #FFF; font-size: 16px; margin-bottom: 10px;
&::placeholder {
color: #FFF;
font-size: 16px;
}
`
export default Input
erro:
src\componentes\input\index.js Line 3:7: 'input' is assigned a value but never used no-unused-vars
ERROR in [eslint] src\componentes\input\index.js Line 20:16: 'Input' is not defined no-undef
Search for the keywords to learn more about each error.
webpack compiled with 1 error and 1 warning