@sistent/sistent 0.15.13 → 0.15.18
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 +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +14 -14
- package/dist/index.mjs +14 -14
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1220,9 +1220,10 @@ declare const GetStartedIcon: FC<IconProps$1>;
|
|
|
1220
1220
|
interface GithubIconProps {
|
|
1221
1221
|
height?: string | number;
|
|
1222
1222
|
width?: string | number;
|
|
1223
|
+
fill?: string;
|
|
1223
1224
|
className?: string;
|
|
1224
1225
|
}
|
|
1225
|
-
declare function GithubIcon({ height, width, className }: GithubIconProps): react_jsx_runtime.JSX.Element;
|
|
1226
|
+
declare function GithubIcon({ height, width, fill, className }: GithubIconProps): react_jsx_runtime.JSX.Element;
|
|
1226
1227
|
|
|
1227
1228
|
interface GoogleIconProps {
|
|
1228
1229
|
height: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -1220,9 +1220,10 @@ declare const GetStartedIcon: FC<IconProps$1>;
|
|
|
1220
1220
|
interface GithubIconProps {
|
|
1221
1221
|
height?: string | number;
|
|
1222
1222
|
width?: string | number;
|
|
1223
|
+
fill?: string;
|
|
1223
1224
|
className?: string;
|
|
1224
1225
|
}
|
|
1225
|
-
declare function GithubIcon({ height, width, className }: GithubIconProps): react_jsx_runtime.JSX.Element;
|
|
1226
|
+
declare function GithubIcon({ height, width, fill, className }: GithubIconProps): react_jsx_runtime.JSX.Element;
|
|
1226
1227
|
|
|
1227
1228
|
interface GoogleIconProps {
|
|
1228
1229
|
height: number;
|