Const PayButton
PayButton: string & StyledComponentBase<"button", any, __type, never> = styled.button(props => ({'&:hover': {cursor: !props.disabled ? 'pointer' : 'not-allowed'},backgroundColor: '#f6a4eb',border: '1px solid #2e6da4',borderRadius: '4px',boxShadow:'0 6px 9px rgba(50, 50, 93, 0.06), 0 2px 5px rgba(0, 0, 0, 0.08), inset 0 1px 0 #ffb9f6',color: 'white',fontSize: '1.1em',opacity: props.disabled ? 0.9 : 1,padding: '12px 48px',width: '100%'}))