@sinco/react 1.0.10-rc.8 → 1.0.10-rc.9

Sign up to get free protection for your applications and to get access to all the features.
package/index.js CHANGED
@@ -10920,20 +10920,7 @@ const themeOptions = {
10920
10920
  breakpoints
10921
10921
  };
10922
10922
 
10923
- const SincoTheme = createTheme(Object.assign({}, themeOptions, {
10924
- typography: {
10925
- body3: {
10926
- fontFamily: "Roboto",
10927
- fontWeight: 310,
10928
- fontSize: 12,
10929
- letterSpacing: 0.17,
10930
- lineHeight: 1.2,
10931
- [breakpoints.down("md")]: {
10932
- fontSize: 11
10933
- }
10934
- }
10935
- }
10936
- }));
10923
+ const SincoTheme = createTheme(Object.assign({}, themeOptions));
10937
10924
 
10938
10925
  var wellKnownSymbol$d = wellKnownSymbol$f;
10939
10926
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sinco/react",
3
- "version": "1.0.10-rc.8",
3
+ "version": "1.0.10-rc.9",
4
4
  "description": "package for the configuration of mui react sinco",
5
5
  "private": false,
6
6
  "license": "MIT",
@@ -1,10 +1 @@
1
- /// <reference types="react" />
2
- declare module "@mui/material/styles" {
3
- interface TypographyVariants {
4
- body3: React.CSSProperties;
5
- }
6
- interface TypographyVariantsOptions {
7
- body3?: React.CSSProperties;
8
- }
9
- }
10
1
  export declare const SincoTheme: import("@mui/material/styles").Theme;