const styles = { primaryButton: { color: "rgba(255, 255, 255, 0.8)", fontSize: "16px", padding: "5px 16px", fontWeight: 400, background: "none", backgroundImage: "linear-gradient(145deg, #016EDA, #6C1ECF, #016EDA, #6C1ECF)", border: "1px solid rgba(255, 255, 255, 0.2)", boxShadow: "0 2px 0 rgba(0, 0, 0, 0.02)", height: "40px", borderRadius: "40px", lineHeight: "29px", letterSpacing: "0.01em", display: "flex", alignItems: "center", marginLeft: "300px", }, }; return ( <button style={styles.primaryButton} type="button"> Primary Button </button> );