@sistent/sistent 0.16.11 → 0.16.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +4 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.js +31 -31
- package/dist/index.mjs +33 -33
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -999,9 +999,12 @@ interface GithubIconProps {
|
|
|
999
999
|
height?: string | number;
|
|
1000
1000
|
width?: string | number;
|
|
1001
1001
|
fill?: string;
|
|
1002
|
+
orgIcon?: boolean;
|
|
1003
|
+
bgFill?: string;
|
|
1004
|
+
catFill?: string;
|
|
1002
1005
|
className?: string;
|
|
1003
1006
|
}
|
|
1004
|
-
declare function GithubIcon({ height, width, fill, className }: GithubIconProps): react_jsx_runtime.JSX.Element;
|
|
1007
|
+
declare function GithubIcon({ height, width, fill, orgIcon, bgFill, catFill, className }: GithubIconProps): react_jsx_runtime.JSX.Element;
|
|
1005
1008
|
|
|
1006
1009
|
interface GoogleIconProps {
|
|
1007
1010
|
height: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -999,9 +999,12 @@ interface GithubIconProps {
|
|
|
999
999
|
height?: string | number;
|
|
1000
1000
|
width?: string | number;
|
|
1001
1001
|
fill?: string;
|
|
1002
|
+
orgIcon?: boolean;
|
|
1003
|
+
bgFill?: string;
|
|
1004
|
+
catFill?: string;
|
|
1002
1005
|
className?: string;
|
|
1003
1006
|
}
|
|
1004
|
-
declare function GithubIcon({ height, width, fill, className }: GithubIconProps): react_jsx_runtime.JSX.Element;
|
|
1007
|
+
declare function GithubIcon({ height, width, fill, orgIcon, bgFill, catFill, className }: GithubIconProps): react_jsx_runtime.JSX.Element;
|
|
1005
1008
|
|
|
1006
1009
|
interface GoogleIconProps {
|
|
1007
1010
|
height: number;
|