Usage

props

example

<Button>기본버튼</Button>
<Button
	width={550}
	height='56px'
	backgroundColor={yellow}
	fontColor={#fff}
	fontSize={16}>
	커스텀버튼
</Button>
const buttonStyle = {
	width: '550px',
	height: 56,
	backgroundColor= 'rgba(233, 53, 80, 1)',
	fontColor: 'red',
	fontSize: '16px'
}

<Button {...buttonStyle}>커스텀버튼</Button>

개선해야할 점

width 값에 따라 border-radius 값이 정해지도록 구현이 되어있습니다.