This commit is contained in:
Kartik Sharma 2025-12-13 11:18:45 +05:30
parent 630c11985d
commit e695807e77

View File

@ -142,8 +142,7 @@ const SubscriptionPlans = () => {
{mod.features.map((feat) => ( {mod.features.map((feat) => (
<li key={feat.id} className="d-flex align-items-start mb-1"> <li key={feat.id} className="d-flex align-items-start mb-1">
<i <i
className={`bx bxs-circle ${ className={`bx bxs-circle ${mod.enabled ? "text-success" : "text-danger"
mod.enabled ? "text-success" : "text-danger"
} me-2 mt-1`} } me-2 mt-1`}
style={{ fontSize: "8px" }} style={{ fontSize: "8px" }}
></i> ></i>
@ -156,7 +155,7 @@ const SubscriptionPlans = () => {
)} )}
</div> </div>
</div> </div>
</div> </div>
); );
})} })}