From 43550749f724e066e658d26db369f8f484b88ebc Mon Sep 17 00:00:00 2001 From: Your Name Date: Wed, 13 Apr 2022 16:23:38 +0430 Subject: [PATCH] update 7 files and delete 1 file --- src/components/CardDesign1/index.js | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/components/CardDesign1/index.js diff --git a/src/components/CardDesign1/index.js b/src/components/CardDesign1/index.js new file mode 100644 index 0000000..75921b2 --- /dev/null +++ b/src/components/CardDesign1/index.js @@ -0,0 +1,25 @@ +import React from "react"; +import CustomToast from "../CustomToast"; +import IconText from "../IconText"; +import TitleSubtitle from "../TitleSubtitle"; + +const CardDesign1 = () => { + return ( +
+ + + +
+ ); +}; + +export default CardDesign1; + +CardDesign1.defaultProps = {};