We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1add982 commit 9fafe04Copy full SHA for 9fafe04
1 file changed
src/lib/index.tsx
@@ -3,20 +3,11 @@ export { isServer, mergeProps } from "solid-js/web";
3
4
type SVGSVGElementTags = JSX.SVGElementTags["svg"];
5
6
-export interface IconTree {
7
- a: SVGSVGElementTags;
8
- c: string;
9
-}
10
-
11
export interface IconProps extends SVGSVGElementTags {
12
size?: string | number;
13
color?: string;
14
title?: string;
15
style?: JSX.CSSProperties;
16
}
17
18
-export interface IconBaseProps extends IconProps {
19
- src: IconTree;
20
21
22
export declare type IconTypes = (props: IconProps) => JSX.Element;
0 commit comments