import React from 'react'; interface XIconProps { color?: string; width?: number; height?: number; className?: string; } /** @deprecated Use icons from icons-v2-generated instead. */ export function XIcon({ width = 16, height = 16, className = '' , color = 'white' }: XIconProps) { return ( ); }