@sexyicons/react
Version:
React components for sexy icons: Icons speak louder than words
18 lines (17 loc) • 539 B
TypeScript
import React from "react";
export declare type Set = "lineal" | "line" | "solid" | "bulk";
export interface SVGProps {
color?: string;
size?: string | number;
set?: Set;
label?: string;
style?: React.CSSProperties;
filled?: boolean;
secondaryColor?: string;
}
export interface IconProps {
color?: string;
set: Set;
secondaryColor?: string;
}
export declare const withSVG: (Component: React.FC<any>) => React.ForwardRefExoticComponent<SVGProps & React.RefAttributes<SVGSVGElement>>;