<Button>Button</Button>
<Button as='a' href='/'>AButton</Button>
const Btn = styled.button`
color: white;
background-color: pink;
`;
.attrs({placeHoldoer})
const Input = styled.input.attrs({ required: true, maxLength: 10 })`
background-color: tomato;
`;
안녕하세요 리엑트 초보입니다.ㅠㅠ as="a"라고 선언하면 아래에 있는 const Btn 스타일을 가지게 되는건가요?.. 자세한 설명이 가능하실까요 ㅠㅠ