timing approve and quik access
This commit is contained in:
@@ -11,7 +11,8 @@ type Props = {
|
||||
className?: string,
|
||||
isLinkPanel?: boolean,
|
||||
businessName?: string,
|
||||
isDisabled?: boolean
|
||||
isDisabled?: boolean,
|
||||
isQuikAccess?: boolean
|
||||
}
|
||||
|
||||
const ServiceItem: FC<Props> = (props: Props) => {
|
||||
@@ -38,7 +39,12 @@ const ServiceItem: FC<Props> = (props: Props) => {
|
||||
</div>
|
||||
</div>
|
||||
<div className='mt-4 text-xs'>
|
||||
<div className='font-extralight'>{item.title} </div>
|
||||
{
|
||||
props.isQuikAccess && props.businessName ?
|
||||
<div className='font-extralight'>{props.businessName} </div>
|
||||
:
|
||||
<div className='font-extralight'>{item.title} </div>
|
||||
}
|
||||
</div>
|
||||
|
||||
<div className='mt-4 flex-1 flex items-end'>
|
||||
|
||||
Reference in New Issue
Block a user