@sinco/react 1.0.1-rc.3 → 1.0.1-rc.4
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 +2 -9
- package/index.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,20 +1,15 @@
|
|
|
1
1
|
# @sinco/react
|
|
2
|
-
|
|
3
2
|
Paquete de sinco react
|
|
4
3
|
|
|
5
4
|
## Cómo empezar
|
|
6
5
|
npm i @sinco/react
|
|
7
6
|
|
|
8
7
|
## Pre-requisitos
|
|
9
|
-
|
|
10
|
-
React en la versión 18
|
|
11
|
-
Instalar mui react
|
|
8
|
+
React en la versión 18 Instalar mui react
|
|
12
9
|
https://mui.com/material-ui/getting-started/installation/
|
|
13
10
|
|
|
14
|
-
|
|
15
11
|
## Fuentes web de Google
|
|
16
|
-
Para instalar la fuente
|
|
17
|
-
|
|
12
|
+
Para instalar la fuente en su proyecto usando la CDN de Google Web Fonts, agregue el siguiente fragmento de código dentro de la `<head />`etiqueta de su proyecto:
|
|
18
13
|
<link
|
|
19
14
|
rel="stylesheet"
|
|
20
15
|
href="https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700&family=Roboto:wght@300;400;500;700&display=swap"
|
|
@@ -30,10 +25,8 @@ Para usar el Iconcomponent de fuente, primero debe agregar la fuente Material Ic
|
|
|
30
25
|
<ThemeProvider theme={SincoTheme}>
|
|
31
26
|
|
|
32
27
|
## Más información
|
|
33
|
-
|
|
34
28
|
Para tener más información de como utilizar react mui
|
|
35
29
|
|
|
36
30
|
https://mui.com/material-ui/getting-started/overview/
|
|
37
31
|
|
|
38
32
|
|
|
39
|
-
|
package/index.js
CHANGED