import { ComponentType, SVGProps } from 'react'; type AllSVGProps = SVGProps type ReservedProps = 'color' | 'size' | 'width' | 'height' | 'fill' | 'viewBox' export interface RemixiconReactIconProps extends Pick> { color?: string; size?: number | string; // should not have any children children?: never; } export type RemixiconReactIconComponentType = ComponentType;