enhace UI
This commit is contained in:
@@ -87,35 +87,33 @@ export const GiftDetails = () => {
|
||||
<div className={styles.detailsRowContainer}>
|
||||
<div className={styles.detailItemContainer}>
|
||||
<Button
|
||||
type="text"
|
||||
shape="circle"
|
||||
className={styles.iconButtonStyle}
|
||||
>
|
||||
<GoldenHouseIcon />
|
||||
</Button>
|
||||
icon={<GoldenHouseIcon />}
|
||||
/>
|
||||
<div>
|
||||
<ProText className={styles.detailLabelStyle}>
|
||||
{t("address.receiverName")}
|
||||
</ProText>
|
||||
<br />
|
||||
<ProText type="secondary">{giftDetails?.receiverName}</ProText>
|
||||
<ProText type="secondary" className={styles.smallTextStyle}>
|
||||
{giftDetails?.receiverName}
|
||||
</ProText>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className={styles.detailItemContainer}>
|
||||
<Button
|
||||
type="text"
|
||||
shape="circle"
|
||||
className={styles.iconButtonStyle}
|
||||
>
|
||||
<BuildsIcon />
|
||||
</Button>
|
||||
icon={<BuildsIcon />}
|
||||
/>
|
||||
<div>
|
||||
<ProText className={styles.detailLabelStyle}>
|
||||
{t("address.receiverPhone")}
|
||||
</ProText>
|
||||
<br />
|
||||
<ProText type="secondary">{giftDetails?.receiverPhone}</ProText>
|
||||
<ProText type="secondary" className={styles.smallTextStyle}>
|
||||
{giftDetails?.receiverPhone}
|
||||
</ProText>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -73,35 +73,29 @@ export const OfficeDetails = () => {
|
||||
<div className={styles.detailsRowContainer}>
|
||||
<div className={styles.detailItemContainer}>
|
||||
<Button
|
||||
type="text"
|
||||
shape="circle"
|
||||
className={styles.iconButtonStyle}
|
||||
>
|
||||
<GoldenHouseIcon />
|
||||
</Button>
|
||||
icon={<GoldenHouseIcon />}
|
||||
/>
|
||||
<div>
|
||||
<ProText className={styles.detailLabelStyle}>
|
||||
{t("address.floorNo")}
|
||||
</ProText>
|
||||
<br />
|
||||
<ProText type="secondary">{officeDetails?.floorNo}</ProText>
|
||||
<ProText type="secondary" className={styles.smallTextStyle}>{officeDetails?.floorNo}</ProText>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className={styles.detailItemContainer}>
|
||||
<Button
|
||||
type="text"
|
||||
shape="circle"
|
||||
className={styles.iconButtonStyle}
|
||||
>
|
||||
<BuildsIcon />
|
||||
</Button>
|
||||
icon={<BuildsIcon />}
|
||||
/>
|
||||
<div>
|
||||
<ProText className={styles.detailLabelStyle}>
|
||||
{t("address.officeNo")}
|
||||
</ProText>
|
||||
<br />
|
||||
<ProText type="secondary">{officeDetails?.officeNo}</ProText>
|
||||
<ProText type="secondary" className={styles.smallTextStyle}>{officeDetails?.officeNo}</ProText>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -72,35 +72,29 @@ export const RoomDetails = () => {
|
||||
<div className={styles.detailsRowContainer}>
|
||||
<div className={styles.detailItemContainer}>
|
||||
<Button
|
||||
type="text"
|
||||
shape="circle"
|
||||
className={styles.iconButtonStyle}
|
||||
>
|
||||
<GoldenHouseIcon />
|
||||
</Button>
|
||||
icon={<GoldenHouseIcon />}
|
||||
/>
|
||||
<div>
|
||||
<ProText className={styles.detailLabelStyle}>
|
||||
{t("address.floorNo")}
|
||||
</ProText>
|
||||
<br />
|
||||
<ProText type="secondary">{roomDetails?.floorNo}</ProText>
|
||||
<ProText type="secondary" className={styles.smallTextStyle}>{roomDetails?.floorNo}</ProText>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className={styles.detailItemContainer}>
|
||||
<Button
|
||||
type="text"
|
||||
shape="circle"
|
||||
className={styles.iconButtonStyle}
|
||||
>
|
||||
<BuildsIcon />
|
||||
</Button>
|
||||
icon={<BuildsIcon />}
|
||||
/>
|
||||
<div>
|
||||
<ProText className={styles.detailLabelStyle}>
|
||||
{t("address.roomNo")}
|
||||
</ProText>
|
||||
<br />
|
||||
<ProText type="secondary">{roomDetails?.roomNo}</ProText>
|
||||
<ProText type="secondary" className={styles.smallTextStyle}>{roomDetails?.roomNo}</ProText>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user