[styled-components + typescript] 커스텀 컴포넌트에 기본 attributes 가져오기
2024. 5. 29. 18:38
반응형
내가 만든 custom input에는 기본 input에 내장되어있는 attributes(ex. value, onChange, placeholder...)에
내가 정의한 추가요소(ex. size, color, align...)이 덧붙여져야 한다.
이 때, 기본 내장 attributues의 type을 가져오는 코드는 다음과 같다.
import styled from 'styled-components';
import { InputHTMLAttributes } from 'react';
interface InputProps extends InputHTMLAttributes<HTMLInputElement> {
size?: 24 | 32;
}
const Input = (props: InputProps) => {
return <StyledInput {...props} />;
};
export default Input;
const StyledInput = styled.input`
outline: 0;
border: 0;
background: none;
border-bottom: 2px solid ${({ theme }) => theme.colors.mint};
color: ${({ theme }) => theme.colors.mint};
font-size: 24px;
padding: 0.5rem;
`;
반응형
'한 걸음 > React & Next.js' 카테고리의 다른 글
[npm] 라이브러리 배포 시, subpath로 깔끔하게 내보내기 (0) | 2024.06.21 |
---|---|
[React] svg icon 컴포넌트화해서 사용하기 (0) | 2024.06.04 |
[Next.js] 디렉토리 구조 & Atomic Design (0) | 2024.05.23 |
[React] 키보드 입력 감지하기 (0) | 2024.05.22 |
[Next.js] 배포 시 console 지우기 (0) | 2024.05.22 |