Skip to content

Commit 6329826

Browse files
committed
add primary btns
1 parent 490c8b0 commit 6329826

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/ecommerce-jewellery-store/src/pages/PaymentDetails.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ const PaymentDetails: React.FC = () => {
7575
</FormElement>
7676
)}
7777
/>
78-
<Button className="k-mt-6" onClick={onSubmitClick}>Submit Order</Button>
78+
<Button className="k-mt-6" onClick={onSubmitClick} themeColor={"primary"}>Submit Order</Button>
7979
</div>
8080
<div className="k-col-span-5 k-col-start-8 k-d-flex k-flex-col k-align-items-start">
8181
<h2 className="k-mb-4">Sub total</h2>

examples/ecommerce-jewellery-store/src/pages/ThankYou.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const ThankYou: React.FC = () => {
1818
<div className="k-d-flex k-flex-col k-justify-content-center k-align-items-center k-h-100 k-text-center">
1919
<h1>Thank You For Your Order!</h1>
2020
<p>You have submitted your order</p>
21-
<Button className="k-mt-6" onClick={onBacktoShoppingClick}>Back to Shopping</Button>
21+
<Button className="k-mt-6" onClick={onBacktoShoppingClick} themeColor={"primary"} size={"large"}>Back to Shopping</Button>
2222
</div>
2323
</Layout>
2424
</>

0 commit comments

Comments
 (0)