<Tooltiptitle="The calculation of salary begins at the start of the month and continues to the current day. Select a month to review salary details for prior periods.">
<QuestionCircleOutlined/>
</Tooltip>
</div>
),
dataIndex:"salary",
dataIndex:"salary",
key:"salary",
key:"salary",
render:(text: string,record: any)=>(
render:(text: string,record: any)=>(
<Tooltip
<Tooltip
title={
title={
<div>
<div>
{record.salary_type==="Hybrid"?(
{record.salary_type==="hybrid" ?(
<p>
<p>
<strong>BaseAmount:</strong>{" "}
<strong>BaseAmount:</strong>$
${record.salary_base_amount}
{record.salary_base_amount}
</p>
</p>
):(
):(
""
""
)}
)}
<p>
<p>
<strong>Performancebasedamount:</strong>{" "}
<strong>Performancebasedamount:</strong>$
${record.salary-record.salary_base_amount}
{record.performance_based_amount}
</p>
</p>
</div>
</div>
}
}
@ -113,3 +121,5 @@ const StatTable = ({
};
};
exportdefaultStatTable;
exportdefaultStatTable;
// The calculation of salary begins at the start of the month and continues to the current day. Select a month to review salary details for prior periods.