parent
f2034bec89
commit
43550749f7
1 changed files with 25 additions and 0 deletions
@ -0,0 +1,25 @@ |
|||||||
|
import React from "react"; |
||||||
|
import CustomToast from "../CustomToast"; |
||||||
|
import IconText from "../IconText"; |
||||||
|
import TitleSubtitle from "../TitleSubtitle"; |
||||||
|
|
||||||
|
const CardDesign1 = () => { |
||||||
|
return ( |
||||||
|
<div className="flex flex-col bg-white shadow-sm rounded max-w-[375px] mr-20 my-20 p-4"> |
||||||
|
<TitleSubtitle |
||||||
|
subTitle={false} |
||||||
|
title={"طبقه سوم"} |
||||||
|
titleColor={"text-[#0F0543]"} |
||||||
|
titleFontWeight={"font-bold"} |
||||||
|
titleDividerBgColor={"bg-[#F8EA1F]"} |
||||||
|
titleDividerWidth={"w-1.5"} |
||||||
|
/> |
||||||
|
<IconText /> |
||||||
|
<CustomToast /> |
||||||
|
</div> |
||||||
|
); |
||||||
|
}; |
||||||
|
|
||||||
|
export default CardDesign1; |
||||||
|
|
||||||
|
CardDesign1.defaultProps = {}; |
Loading…
Reference in new issue