@sinco/react 1.0.2-rc.25 → 1.0.2-rc.27
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/README.md +6 -3
- package/index.js +741 -5656
- package/package.json +1 -1
- package/src/index.d.ts +0 -3
- package/src/lib/Theme/breakpoints.d.ts +3 -0
- package/src/lib/Theme/index.d.ts +14 -0
- package/index.css +0 -83
- package/src/lib/Theme/breackpoints.d.ts +0 -2
- package/src/lib/toastNotification/ToastNotification.d.ts +0 -5
- package/src/lib/toastNotification/interfaces.d.ts +0 -19
package/README.md
CHANGED
@@ -13,24 +13,27 @@ https://mui.com/material-ui/getting-started/installation/
|
|
13
13
|
|
14
14
|
## Fuentes web de Google
|
15
15
|
|
16
|
-
Puedes utilizar fuentes de Google Web Fonts en tu proyecto. Para hacerlo, agrega el siguiente fragmento de código dentro de la etiqueta
|
16
|
+
Puedes utilizar fuentes de Google Web Fonts en tu proyecto. Para hacerlo, agrega el siguiente fragmento de código dentro de la etiqueta `<head>` de tu proyecto:
|
17
17
|
|
18
18
|
` <link
|
19
19
|
rel="stylesheet"
|
20
20
|
href="https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700&family=Roboto:wght@300;400;500;700&display=swap"
|
21
21
|
/>`
|
22
|
+
<br/>
|
22
23
|
Otra opción es instalar las fuentes Roboto y Nunito desde npm utilizando los paquetes O ya sea instalando las fuentes [@fontsource/roboto](https://www.npmjs.com/package/@fontsource/roboto) y [@fontsource/nunito](https://www.npmjs.com/package/@fontsource/nunito) en su archivo index.tsx, los fontsource son que se necesitan son :
|
23
24
|
|
24
25
|
## Roboto
|
25
26
|
|
26
27
|
import '@fontsource/roboto/400.css';
|
28
|
+
<br/>
|
27
29
|
import '@fontsource/roboto/500.css';
|
28
|
-
|
29
30
|
## Nunito
|
30
|
-
|
31
31
|
import '@fontsource/nunito/300.css';
|
32
|
+
<br/>
|
32
33
|
import '@fontsource/nunito/400.css';
|
34
|
+
<br/>
|
33
35
|
import '@fontsource/nunito/500.css';
|
36
|
+
<br/>
|
34
37
|
import '@fontsource/nunito/600.css';
|
35
38
|
|
36
39
|
## Icons
|