improve mobile view for my orders

remove otp requirement from doctor
This commit is contained in:
Danel Kungla
2025-10-09 17:47:59 +03:00
parent 963d2c6a01
commit 3e60745a92
7 changed files with 154 additions and 89 deletions

View File

@@ -0,0 +1,24 @@
import React from 'react';
import { Trans } from '@kit/ui/makerkit/trans';
import { TableCell, TableHead, TableRow } from '@kit/ui/shadcn/table';
const MobleTableRow = ({
titleKey,
value,
}: {
titleKey?: string;
value?: string | number;
}) => (
<TableRow>
<TableHead className="h-2 font-bold">
<Trans i18nKey={titleKey} />
</TableHead>
<TableCell className="p-0 text-right">
<p className="txt-medium-plus text-ui-fg-base">{value}</p>
</TableCell>
</TableRow>
);
export default MobleTableRow;