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 = {};