[INJI-691]: add google drive confirmation page

Signed-off-by: Pooja Babusingh <68894211+PoojaBabusingh@users.noreply.github.com>
This commit is contained in:
Pooja Babusingh
2024-01-23 11:34:52 +05:30
committed by KiruthikaJeyashankar
parent 3ad072ecb8
commit bdd70ea1c7
3 changed files with 57 additions and 18 deletions

View File

@@ -188,13 +188,13 @@ export class SvgImage {
);
}
static DataBackupIcon() {
static DataBackupIcon(width, height) {
return (
<Backup
color1={Theme.Colors.linearGradientStart}
color2={Theme.Colors.linearGradientEnd}
width={25}
height={25}
width={width}
height={height}
/>
);
}
@@ -217,8 +217,8 @@ export class SvgImage {
return <MagnifierZoom />;
}
static GoogleDriveIcon() {
return <GoogleDriveIcon />;
static GoogleDriveIcon(width, height) {
return <GoogleDriveIcon width={width} height={height} />;
}
}