diff --git a/README.md b/README.md
index 4e7a1aa1e..41ba0e474 100644
--- a/README.md
+++ b/README.md
@@ -50,6 +50,7 @@ NEXT_PUBLIC_SHOPIFY_STORE_DOMAIN=xxxxxxx.myshopify.com
```
And change the `tsconfig.json` to resolve to the chosen provider:
+
```
"@framework": ["framework/shopify"],
"@framework/*": ["framework/shopify/*"]
@@ -61,6 +62,11 @@ That's it!
Every provider defines the features that it supports under `framework/{provider}/commerce.config.json`
+#### Features Available
+
+- wishlist
+- customCheckout
+
#### How to turn Features on and off
> NOTE: The selected provider should support the feature that you are toggling. (This means that you can't turn wishlist on if the provider doesn't support this functionality out the box)
@@ -70,7 +76,8 @@ Every provider defines the features that it supports under `framework/{provider}
```json
{
"features": {
- "wishlist": false
+ "wishlist": false,
+ "customCheckout": true
}
}
```
diff --git a/components/icons/ChevronDown.tsx b/components/icons/ChevronDown.tsx
new file mode 100644
index 000000000..542e8056d
--- /dev/null
+++ b/components/icons/ChevronDown.tsx
@@ -0,0 +1,20 @@
+const ChevronDown = ({ ...props }) => {
+ return (
+
+ )
+}
+
+export default ChevronDown
diff --git a/components/icons/ChevronLeft.tsx b/components/icons/ChevronLeft.tsx
index 0d3a01940..4efb6a522 100644
--- a/components/icons/ChevronLeft.tsx
+++ b/components/icons/ChevronLeft.tsx
@@ -1,4 +1,4 @@
-const ChevronUp = ({ ...props }) => {
+const ChevronLeft = ({ ...props }) => {
return (