declare interface RemixIconProps {
  name: string;
  size?: number | string;
  color?: string;
  [key: string]: any;
}
declare const RemixIcon: React.FC<RemixIconProps>;
export default RemixIcon;