import React from 'react'; interface GetAppIconProps { width?: number | string; height?: number | string; className?: string; firstColor?: string; secondColor?: string; thirdColor?: string; fourthColor?: string; fifthColor?: string; sixthColor?: string; } /** @deprecated Use icons from icons-v2-generated instead. */ export function GetAppIcon({ width = 24, height = 24, className = '', firstColor = '#009C9C', secondColor = '#40E3E3', thirdColor = '#1ABAB8', fourthColor = '#87F0F0', fifthColor = '#17CFCF', sixthColor = '#424A52' }: GetAppIconProps) { return ( ); }