modal add card in page bank-account

This commit is contained in:
Ehsan
2024-10-10 03:21:31 +03:30
parent d404180b92
commit 81e07a5f43
12 changed files with 70 additions and 10 deletions
+12
View File
@@ -0,0 +1,12 @@
function ContentText({ children, text }) {
return (
<div className="flex flex-col items-start justify-start gap-[12px] md:gap-[14px] lg:gap-[16px] content-text-panel">
<p className="text-[#525252] dark:text-[#D7D8ED] text-[14px] font-medium">
{text}
</p>
{children}
</div>
);
}
export default ContentText;