You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

23 lines
625 B

import React from "react";
import CustomToast from "../CustomToast";
import IconText from "../../MiniComponents/IconText";
import TitleSubtitle from "../../MiniComponents/TitleSubtitle";
const CardDesign1 = () => {
return (
<div className="w-fit flex flex-col p-4 bg-white shadow-sm rounded">
<TitleSubtitle
subTitle={false}
title={"طبقه سوم"}
titleClassName={"font-sansbold text-[#0F0543]"}
titleBorderClassName={"w-1 h-5 bg-[#F8EA1F] ml-1"}
/>
<IconText />
<CustomToast />
</div>
);
};
export default CardDesign1;
CardDesign1.defaultProps = {};