type IconProps = { size?: number; color?: string; } export const IconTranslate = ({size = 24, color = '#333333'}: IconProps) => { return ( ) }