diff --git a/components/core/index.ts b/components/core/index.ts index faf5aea3e..f402d710d 100644 --- a/components/core/index.ts +++ b/components/core/index.ts @@ -1,6 +1,6 @@ export { default as Avatar } from "./Avatar"; -export { default as Footer } from "./Footer"; -export { default as Navbar } from "./Navbar"; -export { default as Searchbar } from "./Searchbar"; -export { default as Layout } from "./Layout"; export { default as Featurebar } from "./Featurebar"; +export { default as Footer } from "./Footer"; +export { default as Layout } from "./Layout"; +export { default as Navbar } from "./Avatar"; +export { default as Searchbar } from "./Avatar"; diff --git a/components/icon/Bag.tsx b/components/icon/Bag.tsx new file mode 100644 index 000000000..6893fbac8 --- /dev/null +++ b/components/icon/Bag.tsx @@ -0,0 +1,38 @@ +import React from "react"; + +const Bag = ({ ...props }) => { + return ( + + + + + + ); +}; + +export default Bag; diff --git a/components/icon/Heart.tsx b/components/icon/Heart.tsx new file mode 100644 index 000000000..051f57b01 --- /dev/null +++ b/components/icon/Heart.tsx @@ -0,0 +1,24 @@ +import React from "react"; + +const Heart = ({ ...props }) => { + return ( + + + + ); +}; + +export default Heart; diff --git a/components/icon/Trash.tsx b/components/icon/Trash.tsx new file mode 100644 index 000000000..76b0fbc83 --- /dev/null +++ b/components/icon/Trash.tsx @@ -0,0 +1,45 @@ +import React from "react"; + +const Trash = ({ ...props }) => { + return ( + + + + + + + ); +}; + +export default Trash; diff --git a/components/product/ProductView/ProductView.tsx b/components/product/ProductView/ProductView.tsx index b29a2c4d6..a6a74cd4d 100644 --- a/components/product/ProductView/ProductView.tsx +++ b/components/product/ProductView/ProductView.tsx @@ -40,19 +40,19 @@ const ProductView: FunctionComponent = ({ productData, className }) => {

Size

- + S - + M - + L - + XL - + XXL
diff --git a/components/ui/Button/Button.module.css b/components/ui/Button/Button.module.css index c067e78e8..df6b46eb5 100644 --- a/components/ui/Button/Button.module.css +++ b/components/ui/Button/Button.module.css @@ -1,5 +1,5 @@ .root { - @apply cursor-pointer inline-flex px-8 py-2 rounded-sm border border-transparent leading-6 text-white bg-black transition ease-in-out duration-150 shadow-sm font-medium text-center justify-center; + @apply cursor-pointer inline-flex px-8 py-2 rounded-sm border border-transparent leading-6 text-white bg-black transition ease-in-out duration-150 shadow-sm font-semibold text-center justify-center; } .root:hover {