<윤호>

const Button = styled.button`
	--font-color: ${({ fontColor }) => fontColor};

	color: var(--font-color);

	&:active {
    border: solid 2px var(--font-color);
  }
`
const Button = ({width = 200, height = 100}) = {
	...
	return ...
}

// vs

const Button = ({width, height}) = {
	...
	return ...
}

Button.defaultProps = {
  width: 200,
  height: 100,
};