@solar-icons/react
Version:
Solar Icons for React
8 lines (7 loc) • 354 B
TypeScript
import type { ReactElement } from 'react';
import type { IconProps, IconWeight } from './types';
interface IconBaseProps extends IconProps {
weights: Map<IconWeight, ReactElement>;
}
declare const IconBase: import("react").ForwardRefExoticComponent<Omit<IconBaseProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
export default IconBase;