10 lines
283 B
JavaScript
10 lines
283 B
JavaScript
function ContentText({ children, text }) {
|
|
return (
|
|
<div className="flex flex-col items-start justify-start gap-[16px]">
|
|
<p className="text-[#525252] text-[14px] font-medium">{text}</p>
|
|
{children}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default ContentText |