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