siam-ui-utils 2.0.6 → 2.0.7
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/.eslintrc.json +6 -2
- package/index.d.ts +0 -53
- package/index.html +12 -0
- package/package.json +3 -10
- package/src/App.jsx +18 -0
- package/src/IntlMessages.jsx +6 -0
- package/src/{archivos-adjuntos → dropzone-uploader}/index.jsx +8 -8
- package/src/index.js +1 -1
- package/src/main.jsx +8 -0
- package/src/tomar-foto/index.jsx +1 -0
- package/tsconfig.json +24 -24
- package/vite.config.ts +8 -4
- package/src/IntlMessages.tsx +0 -11
- package/src/iconos/anular-ayuda-icon.jsx +0 -72
- package/src/iconos/asesoria-burbuja-button.jsx +0 -104
- package/src/iconos/asesoria-burbuja-icon.jsx +0 -104
- package/src/iconos/atencion-presencial-icon.jsx +0 -79
- package/src/iconos/atencion-telefonica-icon.jsx +0 -44
- package/src/iconos/atencion-turno-telefonico-icon.jsx +0 -53
- package/src/iconos/atencion-virtual-icon.jsx +0 -37
- package/src/iconos/biblioteca-burbuja-button.jsx +0 -59
- package/src/iconos/biblioteca-burbuja-icon.jsx +0 -66
- package/src/iconos/cancelar-turno-icon.jsx +0 -29
- package/src/iconos/codigo-verificacion-icon.jsx +0 -54
- package/src/iconos/constants-svg.js +0 -659
- package/src/iconos/curso-autogestionado-color-icon.jsx +0 -203
- package/src/iconos/curso-autogestionado-icon.jsx +0 -49
- package/src/iconos/curso-burbuja-button.jsx +0 -41
- package/src/iconos/curso-burbuja-icon.jsx +0 -97
- package/src/iconos/curso-presencial-color-icon.jsx +0 -256
- package/src/iconos/curso-presencial-icon.jsx +0 -71
- package/src/iconos/curso-virtual-color-icon.jsx +0 -109
- package/src/iconos/curso-virtual-icon.jsx +0 -40
- package/src/iconos/delegaciones-icon.jsx +0 -66
- package/src/iconos/forgot-dni-icon.jsx +0 -42
- package/src/iconos/forgot-password-icon.jsx +0 -46
- package/src/iconos/icon-button-svg.jsx +0 -50
- package/src/iconos/index.js +0 -31
- package/src/iconos/lapiz-act-contacto-perf-button.jsx +0 -44
- package/src/iconos/styled-icon.jsx +0 -25
- package/src/iconos/styled-timer-reenv-cod.jsx +0 -16
- package/src/iconos/user/user-styled-icon.jsx +0 -22
- package/src/iconos/verificar-sin-verificar-icon.jsx +0 -39
- package/src/iconos/verificar-verificado-icon.jsx +0 -30
- package/src/iconos/whatsapp-icon-button.jsx +0 -41
package/.eslintrc.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"extends": [
|
|
3
3
|
"eslint:recommended",
|
|
4
|
-
"plugin:react/
|
|
4
|
+
"plugin:react/all",
|
|
5
5
|
"plugin:react-hooks/recommended"
|
|
6
6
|
],
|
|
7
7
|
"plugins": [
|
|
@@ -20,6 +20,10 @@
|
|
|
20
20
|
"es2020": true
|
|
21
21
|
},
|
|
22
22
|
"rules": {
|
|
23
|
-
"react/react-in-jsx-scope": "off"
|
|
23
|
+
"react/react-in-jsx-scope": "off",
|
|
24
|
+
"react/jsx-uses-react": "error",
|
|
25
|
+
"react/jsx-uses-vars": "error",
|
|
26
|
+
"react/jsx-indent-props": "off",
|
|
27
|
+
"react/jsx-indent": "off"
|
|
24
28
|
}
|
|
25
29
|
}
|
package/index.d.ts
CHANGED
|
@@ -15,59 +15,6 @@ declare module "siam-ui-utils" {
|
|
|
15
15
|
//INTLMESSAGES
|
|
16
16
|
export function IntlMessages(props);
|
|
17
17
|
|
|
18
|
-
//ICONOS
|
|
19
|
-
export function AnularAyudaIcon(props);
|
|
20
|
-
export function AsesoriaBurbujaButton(props);
|
|
21
|
-
export function AsesoriaBurbujaIcon(props);
|
|
22
|
-
export function AtencionPresencial(props);
|
|
23
|
-
export function AtencionTelefonica(props);
|
|
24
|
-
export function AtencionTurnoTelefonico(props);
|
|
25
|
-
export function AtencionVirtual(props);
|
|
26
|
-
export function BibliotecaBurbujaButton(props);
|
|
27
|
-
export function BibliotecaBurbujaIcon(props);
|
|
28
|
-
export function CancelarTurnoIcon(props);
|
|
29
|
-
export function CodigoVerificacionIcon(props);
|
|
30
|
-
export const passwordEyeSvg;
|
|
31
|
-
export const passwordEyeOpenSvg;
|
|
32
|
-
export const contactoBarraSup;
|
|
33
|
-
export const pagosMenuLateral;
|
|
34
|
-
export const delegacionMenuLateral;
|
|
35
|
-
export const delegacionesVerde;
|
|
36
|
-
export const telefonoCeleste;
|
|
37
|
-
export const mailRojo;
|
|
38
|
-
export const whatAppIcon;
|
|
39
|
-
export const telefonoEmergencia;
|
|
40
|
-
export const telefonoConsulta;
|
|
41
|
-
export const telefonoExequial;
|
|
42
|
-
export const telefonoSalud;
|
|
43
|
-
export const descarga;
|
|
44
|
-
export const descargaOver;
|
|
45
|
-
export const anularAyuda;
|
|
46
|
-
export const continuar;
|
|
47
|
-
export const pdfImage;
|
|
48
|
-
export function CursoAutogestionadoColor(props);
|
|
49
|
-
export function CursoAutogestionado(props);
|
|
50
|
-
export function CursoBurbujaButton(props);
|
|
51
|
-
export function CursoBurbujaIcon(props);
|
|
52
|
-
export function CursoPresencialColor(props);
|
|
53
|
-
export function CursoPresencial(props);
|
|
54
|
-
export function CursoVirtualColor(props);
|
|
55
|
-
export function CursoVirtual(props);
|
|
56
|
-
export function DelegacionesIcon(props);
|
|
57
|
-
export function ForgotDniIcon(props);
|
|
58
|
-
export function ForgotPasswordIcon(props);
|
|
59
|
-
export function IconButtonSvg(props);
|
|
60
|
-
export function LabelTimer(props);
|
|
61
|
-
export function LapizActContactoPerfilButton(props);
|
|
62
|
-
export function Icon(props);
|
|
63
|
-
export function UserIcon(props);
|
|
64
|
-
export function VerificarSinVerificarIcon(props);
|
|
65
|
-
export function VerificarVerificadoIcon(props);
|
|
66
|
-
export function WhatsappIconButton(props);
|
|
67
|
-
|
|
68
|
-
//ICONOS/USER
|
|
69
|
-
export function UserIcon(props);
|
|
70
|
-
|
|
71
18
|
//TOMAR FOTO
|
|
72
19
|
export function TomarFoto(props);
|
|
73
20
|
}
|
package/index.html
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
|
+
<title>Firma digital</title>
|
|
7
|
+
</head>
|
|
8
|
+
<body>
|
|
9
|
+
<div id="root"></div>
|
|
10
|
+
<script type="module" src="/src/main.jsx"></script>
|
|
11
|
+
</body>
|
|
12
|
+
</html>
|
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "siam-ui-utils",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.7",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"ampf-react",
|
|
6
6
|
"ampf-utils",
|
|
7
7
|
"siam-ui-utils"
|
|
8
8
|
],
|
|
9
|
+
"type": "module",
|
|
9
10
|
"author": "Ampf Development Team",
|
|
10
11
|
"license": "MIT",
|
|
11
12
|
"description": "Conjunto de librerias de componentes utiles para AMPF",
|
|
@@ -19,6 +20,7 @@
|
|
|
19
20
|
},
|
|
20
21
|
"moduleResolution": "nodenext",
|
|
21
22
|
"scripts": {
|
|
23
|
+
"start": "vite",
|
|
22
24
|
"publish-npm": "npm publish"
|
|
23
25
|
},
|
|
24
26
|
"dependencies": {
|
|
@@ -57,14 +59,5 @@
|
|
|
57
59
|
"vite": "^5.3.4",
|
|
58
60
|
"vite-plugin-eslint": "^1.8.1",
|
|
59
61
|
"vitest": "^2.0.5"
|
|
60
|
-
},
|
|
61
|
-
"resolutions": {
|
|
62
|
-
"@babel/core": "7.19.6",
|
|
63
|
-
"@babel/generator": "7.19.6",
|
|
64
|
-
"@babel/compat-data": "7.19.4",
|
|
65
|
-
"@babel/helper-compilation-targets": "7.19.3",
|
|
66
|
-
"@babel/helper-create-class-features-plugin": "7.19.0",
|
|
67
|
-
"@babel/helper-module-transforms": "7.19.6",
|
|
68
|
-
"babel-loader": "8.2.5"
|
|
69
62
|
}
|
|
70
63
|
}
|
package/src/App.jsx
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { TomarFoto } from './tomar-foto'
|
|
2
|
+
function App() {
|
|
3
|
+
return (
|
|
4
|
+
<TomarFoto />
|
|
5
|
+
// <AnularAyudaIcon
|
|
6
|
+
// cbuPago='1234'
|
|
7
|
+
// codDelegacion='AMPF'
|
|
8
|
+
// fechaAcreditacion='10/10/2025'
|
|
9
|
+
// fechaVtoTramite='10/10/2025'
|
|
10
|
+
// netoFinal={124}
|
|
11
|
+
// nroSolicitud='1234'
|
|
12
|
+
// size='3.5rem'
|
|
13
|
+
// title='Botón de arrepentimiento'
|
|
14
|
+
// />
|
|
15
|
+
)
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export default App
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import React, { useEffect, useState } from 'react'
|
|
2
|
-
import { getDroppedOrSelectedFiles } from 'html5-file-selector'
|
|
1
|
+
/* eslint-disable react/prop-types */import React, { useEffect, useState } from 'react'import { getDroppedOrSelectedFiles } from 'html5-file-selector'
|
|
3
2
|
import Dropzone from 'react-dropzone-uploader'
|
|
4
3
|
import { NotificationManager } from 'react-notifications'
|
|
5
4
|
import 'react-dropzone-uploader/dist/styles.css'
|
|
6
|
-
import { IconButtonSvg, pdfImage } from '
|
|
5
|
+
import { IconButtonSvg, pdfImage } from '..'
|
|
7
6
|
|
|
8
|
-
const maxSize = 7
|
|
7
|
+
const maxSize = 7 //en MB
|
|
9
8
|
export const DropzoneUploader = ({
|
|
10
9
|
onChangeFiles,
|
|
11
10
|
totalFiles,
|
|
12
|
-
|
|
11
|
+
maxFiles = 3,
|
|
13
12
|
accept = 'image/*, application/pdf',
|
|
14
13
|
capture = null,
|
|
15
|
-
|
|
14
|
+
nameFileLabel = 'Subir archivos',
|
|
15
|
+
maxFileSize=maxSize
|
|
16
16
|
}) => {
|
|
17
17
|
const [files, setFiles] = useState([])
|
|
18
18
|
const [totalFilesDU, setTotalFilesDU] = useState(totalFiles)
|
|
@@ -43,7 +43,7 @@ export const DropzoneUploader = ({
|
|
|
43
43
|
}
|
|
44
44
|
const CustomPreview = ({ fileWithMeta }) => {
|
|
45
45
|
const { meta, remove } = fileWithMeta
|
|
46
|
-
if (meta.size / (1024 * 1024) >
|
|
46
|
+
if (meta.size / (1024 * 1024) > maxFileSize) {
|
|
47
47
|
NotificationManager.error(
|
|
48
48
|
'El archivo supera el tamaño máximo',
|
|
49
49
|
'Advertencia'
|
|
@@ -122,7 +122,7 @@ export const DropzoneUploader = ({
|
|
|
122
122
|
<Dropzone
|
|
123
123
|
disableUpload={false}
|
|
124
124
|
maxFiles={totalFilesDU < maxFiles ? maxFiles : 0}
|
|
125
|
-
maxSize={
|
|
125
|
+
maxSize={maxFileSize} // en megas
|
|
126
126
|
InputComponent={Input}
|
|
127
127
|
PreviewComponent={CustomPreview}
|
|
128
128
|
classNames={{ dropzone: 'dropzone-upload-frame' }}
|
package/src/index.js
CHANGED
package/src/main.jsx
ADDED
package/src/tomar-foto/index.jsx
CHANGED
package/tsconfig.json
CHANGED
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"target": "es6",
|
|
4
|
+
"lib": [
|
|
5
|
+
"dom",
|
|
6
|
+
"dom.iterable",
|
|
7
|
+
"esnext"
|
|
8
|
+
],
|
|
9
|
+
"allowJs": true,
|
|
10
|
+
"esModuleInterop": true,
|
|
11
|
+
"skipLibCheck": true,
|
|
12
|
+
"strict": true,
|
|
13
|
+
"forceConsistentCasingInFileNames": true,
|
|
14
|
+
"module": "commonjs",
|
|
15
|
+
"moduleResolution": "node",
|
|
16
|
+
"noImplicitReturns": true,
|
|
17
|
+
"resolveJsonModule": true,
|
|
18
|
+
"isolatedModules": true,
|
|
19
|
+
"noEmit": true,
|
|
20
|
+
"jsx": "preserve",
|
|
21
|
+
},
|
|
22
|
+
"include": [
|
|
23
|
+
"src",
|
|
24
|
+
"index.d.ts"
|
|
25
|
+
]
|
|
26
26
|
}
|
package/vite.config.ts
CHANGED
|
@@ -3,8 +3,12 @@ import { defineConfig } from "vitest/config";
|
|
|
3
3
|
import eslint from 'vite-plugin-eslint';
|
|
4
4
|
|
|
5
5
|
export default defineConfig({
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
6
|
+
plugins: [react(), eslint()],
|
|
7
|
+
test: {
|
|
8
|
+
globals: true,
|
|
9
|
+
},
|
|
10
|
+
server: {
|
|
11
|
+
port: 3002,
|
|
12
|
+
open: true,
|
|
13
|
+
},
|
|
10
14
|
});
|
package/src/IntlMessages.tsx
DELETED
|
@@ -1,72 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { withTheme } from 'styled-components';
|
|
3
|
-
import { useNavigate } from 'react-router-dom';
|
|
4
|
-
import { Icon } from './styled-icon';
|
|
5
|
-
|
|
6
|
-
const AnularAyudaIcon = (props) => {
|
|
7
|
-
const { sublabel = '', size = '', title, tipoServicioEconomico = 'AYUDAS_ECONOMICAS', pathDesestimiento = '/app/econo/ayudas/desestimiento' } = props || {};
|
|
8
|
-
const sublabeldisplay = sublabel.length > 0 ? 'block' : undefined;
|
|
9
|
-
const {
|
|
10
|
-
codDelegacion,
|
|
11
|
-
nroSolicitud,
|
|
12
|
-
cbuPago,
|
|
13
|
-
fechaVtoTramite,
|
|
14
|
-
netoFinal,
|
|
15
|
-
fechaAcreditacion,
|
|
16
|
-
} = props || {};
|
|
17
|
-
const navigate = useNavigate();
|
|
18
|
-
|
|
19
|
-
return (
|
|
20
|
-
<Icon
|
|
21
|
-
width={size}
|
|
22
|
-
sublabeldisplay={sublabeldisplay}
|
|
23
|
-
title={title}
|
|
24
|
-
onClick={() =>
|
|
25
|
-
navigate(pathDesestimiento, {
|
|
26
|
-
codDelegacion: codDelegacion,
|
|
27
|
-
nroSolicitud: nroSolicitud,
|
|
28
|
-
cbuPago: cbuPago,
|
|
29
|
-
fechaVtoTramite: fechaVtoTramite,
|
|
30
|
-
netoFinal: netoFinal,
|
|
31
|
-
fechaAcreditacion: fechaAcreditacion,
|
|
32
|
-
tipoServicio: tipoServicioEconomico,
|
|
33
|
-
})
|
|
34
|
-
}
|
|
35
|
-
>
|
|
36
|
-
<svg
|
|
37
|
-
version="1.1"
|
|
38
|
-
baseProfile="basic"
|
|
39
|
-
id="Capa_1"
|
|
40
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
41
|
-
x="0px"
|
|
42
|
-
y="0px"
|
|
43
|
-
width="18.415px"
|
|
44
|
-
height="17.471px"
|
|
45
|
-
viewBox="0 0 18.415 17.471"
|
|
46
|
-
>
|
|
47
|
-
<g>
|
|
48
|
-
<path
|
|
49
|
-
fill="#CECECE"
|
|
50
|
-
d="M15.855,2.54C14.206,0.892,12.016,0,9.65,0c-2.27,0-4.402,0.834-6.013,2.366L3.153,2.851L2.106,1.804
|
|
51
|
-
C1.835,1.532,1.389,1.668,1.293,2.036L0.012,7.271c-0.077,0.351,0.233,0.66,0.582,0.582L5.85,6.574
|
|
52
|
-
C6.218,6.477,6.334,6.031,6.081,5.76L4.86,4.537l0.503-0.504c2.502-2.287,6.361-2.21,8.785,0.214
|
|
53
|
-
c1.357,1.358,2.017,3.219,1.823,5.138c-0.193,1.9-1.242,3.607-2.852,4.693c-2.269,1.492-5.43,1.299-7.523-0.465
|
|
54
|
-
c-0.602-0.506-1.086-1.105-1.474-1.766c-0.078-0.135-0.232-0.213-0.349-0.156l-1.727,0.719c-0.077,0.039-0.136,0.098-0.174,0.174
|
|
55
|
-
c-0.02,0.078-0.02,0.154,0.019,0.215c0.389,0.756,0.894,1.434,1.494,2.055c1.686,1.727,3.994,2.617,6.302,2.617
|
|
56
|
-
c1.862,0,3.724-0.582,5.255-1.746c2.036-1.551,3.276-3.877,3.451-6.398C18.569,6.787,17.638,4.324,15.855,2.54L15.855,2.54z"
|
|
57
|
-
/>
|
|
58
|
-
<path
|
|
59
|
-
fill="#CECECE"
|
|
60
|
-
d="M10.405,4.537H8.893c-0.154,0-0.29,0.137-0.29,0.292v4.363c0,0.369,0.232,0.678,0.563,0.813l3.297,1.184
|
|
61
|
-
c0.154,0.059,0.329-0.018,0.367-0.174l0.504-1.416c0.021-0.076,0.021-0.154-0.019-0.232C13.275,9.29,13.217,9.25,13.14,9.211
|
|
62
|
-
l-2.21-0.795c-0.155-0.059-0.272-0.213-0.272-0.388V4.829C10.697,4.653,10.58,4.537,10.405,4.537L10.405,4.537z"
|
|
63
|
-
/>
|
|
64
|
-
</g>
|
|
65
|
-
</svg>
|
|
66
|
-
</Icon>
|
|
67
|
-
);
|
|
68
|
-
};
|
|
69
|
-
AnularAyudaIcon.defaultProps = { theme: {} };
|
|
70
|
-
const _t = withTheme(AnularAyudaIcon);
|
|
71
|
-
|
|
72
|
-
export { _t as AnularAyudaIcon }
|
|
@@ -1,104 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { withTheme } from 'styled-components';
|
|
3
|
-
import { Icon } from './styled-icon';
|
|
4
|
-
|
|
5
|
-
const AsesoriaBurbujaButton = (props) => {
|
|
6
|
-
const { sublabel = '', size = '' } = props || {};
|
|
7
|
-
|
|
8
|
-
return (
|
|
9
|
-
<Icon width={size} display={sublabel !== '' ? 'block' : 'none'}>
|
|
10
|
-
<svg
|
|
11
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
12
|
-
version="1.1"
|
|
13
|
-
viewBox="0 0 91.984 91.985"
|
|
14
|
-
>
|
|
15
|
-
<path
|
|
16
|
-
fill="#E2DFCF"
|
|
17
|
-
d="M45.992,0C20.632,0,0,20.631,0,45.993c0,25.359,20.632,45.992,45.992,45.992s45.992-20.633,45.992-45.992 C91.984,20.631,71.353,0,45.992,0z M45.992,82.657c-20.218,0-36.665-16.447-36.665-36.664c0-20.219,16.447-36.666,36.665-36.666 c20.217,0,36.664,16.447,36.664,36.666C82.656,66.209,66.209,82.657,45.992,82.657z"
|
|
18
|
-
/>
|
|
19
|
-
<g>
|
|
20
|
-
<g>
|
|
21
|
-
<path
|
|
22
|
-
fill="#333333"
|
|
23
|
-
d="M26.3,49.868h-2.8l-0.552,1.297h-1.072l2.521-5.6h1.023l2.528,5.6H26.86L26.3,49.868z M25.956,49.051 L24.9,46.604l-1.049,2.447H25.956z"
|
|
24
|
-
/>
|
|
25
|
-
<path
|
|
26
|
-
fill="#333333"
|
|
27
|
-
d="M29.217,51.061c-0.403-0.123-0.722-0.287-0.956-0.488l0.359-0.809c0.229,0.182,0.511,0.33,0.845,0.443 c0.333,0.115,0.668,0.172,1.004,0.172c0.416,0,0.727-0.066,0.932-0.199s0.308-0.309,0.308-0.527c0-0.16-0.057-0.293-0.172-0.396 c-0.114-0.104-0.26-0.186-0.436-0.244s-0.416-0.125-0.72-0.199c-0.427-0.102-0.772-0.203-1.036-0.305 c-0.265-0.102-0.491-0.26-0.681-0.477c-0.189-0.215-0.283-0.508-0.283-0.875c0-0.311,0.084-0.592,0.252-0.844 c0.168-0.254,0.421-0.455,0.76-0.605c0.339-0.148,0.753-0.223,1.244-0.223c0.341,0,0.677,0.041,1.008,0.127 c0.33,0.086,0.616,0.209,0.855,0.369l-0.327,0.807c-0.246-0.143-0.502-0.252-0.769-0.328c-0.267-0.074-0.525-0.111-0.775-0.111 c-0.411,0-0.717,0.068-0.916,0.207c-0.2,0.139-0.301,0.324-0.301,0.553c0,0.16,0.058,0.291,0.172,0.393 c0.115,0.102,0.261,0.182,0.437,0.24s0.416,0.125,0.72,0.199c0.416,0.096,0.758,0.195,1.024,0.301 c0.267,0.104,0.494,0.262,0.684,0.475c0.189,0.215,0.284,0.502,0.284,0.865c0,0.309-0.084,0.59-0.252,0.84s-0.423,0.451-0.764,0.6 c-0.342,0.148-0.758,0.225-1.248,0.225C30.036,51.245,29.619,51.182,29.217,51.061z"
|
|
28
|
-
/>
|
|
29
|
-
<path
|
|
30
|
-
fill="#333333"
|
|
31
|
-
d="M38.036,50.292v0.873h-4.2v-5.6h4.088v0.871h-3.048v1.455h2.704v0.857h-2.704v1.543H38.036z"
|
|
32
|
-
/>
|
|
33
|
-
<path
|
|
34
|
-
fill="#333333"
|
|
35
|
-
d="M39.753,51.061c-0.403-0.123-0.722-0.287-0.956-0.488l0.359-0.809c0.229,0.182,0.511,0.33,0.845,0.443 c0.333,0.115,0.668,0.172,1.004,0.172c0.416,0,0.727-0.066,0.932-0.199s0.308-0.309,0.308-0.527c0-0.16-0.057-0.293-0.172-0.396 c-0.114-0.104-0.26-0.186-0.436-0.244s-0.416-0.125-0.72-0.199c-0.427-0.102-0.772-0.203-1.036-0.305 c-0.265-0.102-0.491-0.26-0.681-0.477c-0.189-0.215-0.283-0.508-0.283-0.875c0-0.311,0.084-0.592,0.252-0.844 c0.168-0.254,0.421-0.455,0.76-0.605c0.339-0.148,0.753-0.223,1.244-0.223c0.341,0,0.677,0.041,1.008,0.127 c0.33,0.086,0.616,0.209,0.855,0.369l-0.327,0.807c-0.246-0.143-0.502-0.252-0.769-0.328c-0.267-0.074-0.525-0.111-0.775-0.111 c-0.411,0-0.717,0.068-0.916,0.207c-0.2,0.139-0.301,0.324-0.301,0.553c0,0.16,0.058,0.291,0.172,0.393 c0.115,0.102,0.261,0.182,0.437,0.24s0.416,0.125,0.72,0.199c0.416,0.096,0.758,0.195,1.024,0.301 c0.267,0.104,0.494,0.262,0.684,0.475c0.189,0.215,0.284,0.502,0.284,0.865c0,0.309-0.084,0.59-0.252,0.84s-0.423,0.451-0.764,0.6 c-0.342,0.148-0.758,0.225-1.248,0.225C40.572,51.245,40.155,51.182,39.753,51.061z"
|
|
36
|
-
/>
|
|
37
|
-
<path
|
|
38
|
-
fill="#333333"
|
|
39
|
-
d="M45.445,50.872c-0.459-0.248-0.819-0.592-1.08-1.031c-0.262-0.439-0.393-0.932-0.393-1.477 c0-0.543,0.131-1.035,0.393-1.477c0.261-0.439,0.621-0.783,1.08-1.031c0.458-0.248,0.973-0.371,1.544-0.371 c0.57,0,1.085,0.123,1.544,0.371s0.818,0.592,1.08,1.027c0.261,0.438,0.392,0.932,0.392,1.48s-0.131,1.043-0.392,1.48 c-0.262,0.438-0.621,0.779-1.08,1.027s-0.974,0.373-1.544,0.373C46.418,51.245,45.903,51.12,45.445,50.872z M47.997,50.081 c0.299-0.168,0.533-0.402,0.704-0.705c0.171-0.301,0.256-0.639,0.256-1.012s-0.085-0.711-0.256-1.012s-0.405-0.535-0.704-0.703 s-0.635-0.252-1.008-0.252c-0.374,0-0.71,0.084-1.008,0.252c-0.299,0.168-0.534,0.402-0.704,0.703 c-0.171,0.301-0.256,0.639-0.256,1.012s0.085,0.711,0.256,1.012c0.17,0.303,0.405,0.537,0.704,0.705 c0.298,0.168,0.634,0.252,1.008,0.252C47.362,50.333,47.698,50.249,47.997,50.081z"
|
|
40
|
-
/>
|
|
41
|
-
<path
|
|
42
|
-
fill="#333333"
|
|
43
|
-
d="M54.846,51.165l-1.144-1.641c-0.049,0.006-0.12,0.008-0.217,0.008h-1.264v1.633h-1.04v-5.6h2.304 c0.485,0,0.908,0.08,1.269,0.238c0.359,0.16,0.636,0.391,0.828,0.689c0.191,0.299,0.288,0.652,0.288,1.063 c0,0.422-0.104,0.785-0.309,1.09c-0.205,0.303-0.5,0.529-0.884,0.68l1.288,1.84H54.846z M54.47,46.733 c-0.234-0.193-0.579-0.289-1.032-0.289h-1.216v2.232h1.216c0.453,0,0.798-0.098,1.032-0.293c0.234-0.193,0.352-0.471,0.352-0.828 C54.821,47.2,54.704,46.924,54.47,46.733z"
|
|
44
|
-
/>
|
|
45
|
-
<path fill="#333333" d="M57.101,45.565h1.04v5.6h-1.04V45.565z" />
|
|
46
|
-
<path
|
|
47
|
-
fill="#333333"
|
|
48
|
-
d="M63.356,49.868h-2.8l-0.552,1.297h-1.072l2.521-5.6h1.023l2.528,5.6h-1.088L63.356,49.868z M63.013,49.051 l-1.056-2.447l-1.049,2.447H63.013z"
|
|
49
|
-
/>
|
|
50
|
-
<path
|
|
51
|
-
fill="#333333"
|
|
52
|
-
d="M66.273,51.061c-0.403-0.123-0.722-0.287-0.956-0.488l0.359-0.809c0.229,0.182,0.511,0.33,0.845,0.443 c0.333,0.115,0.668,0.172,1.004,0.172c0.416,0,0.727-0.066,0.932-0.199s0.308-0.309,0.308-0.527c0-0.16-0.057-0.293-0.172-0.396 c-0.114-0.104-0.26-0.186-0.436-0.244s-0.416-0.125-0.72-0.199c-0.427-0.102-0.772-0.203-1.036-0.305 c-0.265-0.102-0.491-0.26-0.681-0.477c-0.189-0.215-0.283-0.508-0.283-0.875c0-0.311,0.084-0.592,0.252-0.844 c0.168-0.254,0.421-0.455,0.76-0.605c0.339-0.148,0.753-0.223,1.244-0.223c0.341,0,0.677,0.041,1.008,0.127 c0.33,0.086,0.616,0.209,0.855,0.369l-0.327,0.807c-0.246-0.143-0.502-0.252-0.769-0.328c-0.267-0.074-0.525-0.111-0.775-0.111 c-0.411,0-0.717,0.068-0.916,0.207c-0.2,0.139-0.301,0.324-0.301,0.553c0,0.16,0.058,0.291,0.172,0.393 c0.115,0.102,0.261,0.182,0.437,0.24s0.416,0.125,0.72,0.199c0.416,0.096,0.758,0.195,1.024,0.301 c0.267,0.104,0.494,0.262,0.684,0.475c0.189,0.215,0.284,0.502,0.284,0.865c0,0.309-0.084,0.59-0.252,0.84s-0.423,0.451-0.764,0.6 c-0.342,0.148-0.758,0.225-1.248,0.225C67.093,51.245,66.676,51.182,66.273,51.061z"
|
|
53
|
-
/>
|
|
54
|
-
</g>
|
|
55
|
-
</g>
|
|
56
|
-
<g>
|
|
57
|
-
<g>
|
|
58
|
-
<path
|
|
59
|
-
fill="#333333"
|
|
60
|
-
d="M26.3,49.868h-2.8l-0.552,1.297h-1.072l2.521-5.6h1.023l2.528,5.6H26.86L26.3,49.868z M25.956,49.051 L24.9,46.604l-1.049,2.447H25.956z"
|
|
61
|
-
/>
|
|
62
|
-
<path
|
|
63
|
-
fill="#333333"
|
|
64
|
-
d="M29.217,51.061c-0.403-0.123-0.722-0.287-0.956-0.488l0.359-0.809c0.229,0.182,0.511,0.33,0.845,0.443 c0.333,0.115,0.668,0.172,1.004,0.172c0.416,0,0.727-0.066,0.932-0.199s0.308-0.309,0.308-0.527c0-0.16-0.057-0.293-0.172-0.396 c-0.114-0.104-0.26-0.186-0.436-0.244s-0.416-0.125-0.72-0.199c-0.427-0.102-0.772-0.203-1.036-0.305 c-0.265-0.102-0.491-0.26-0.681-0.477c-0.189-0.215-0.283-0.508-0.283-0.875c0-0.311,0.084-0.592,0.252-0.844 c0.168-0.254,0.421-0.455,0.76-0.605c0.339-0.148,0.753-0.223,1.244-0.223c0.341,0,0.677,0.041,1.008,0.127 c0.33,0.086,0.616,0.209,0.855,0.369l-0.327,0.807c-0.246-0.143-0.502-0.252-0.769-0.328c-0.267-0.074-0.525-0.111-0.775-0.111 c-0.411,0-0.717,0.068-0.916,0.207c-0.2,0.139-0.301,0.324-0.301,0.553c0,0.16,0.058,0.291,0.172,0.393 c0.115,0.102,0.261,0.182,0.437,0.24s0.416,0.125,0.72,0.199c0.416,0.096,0.758,0.195,1.024,0.301 c0.267,0.104,0.494,0.262,0.684,0.475c0.189,0.215,0.284,0.502,0.284,0.865c0,0.309-0.084,0.59-0.252,0.84s-0.423,0.451-0.764,0.6 c-0.342,0.148-0.758,0.225-1.248,0.225C30.036,51.245,29.619,51.182,29.217,51.061z"
|
|
65
|
-
/>
|
|
66
|
-
<path
|
|
67
|
-
fill="#333333"
|
|
68
|
-
d="M38.036,50.292v0.873h-4.2v-5.6h4.088v0.871h-3.048v1.455h2.704v0.857h-2.704v1.543H38.036z"
|
|
69
|
-
/>
|
|
70
|
-
<path
|
|
71
|
-
fill="#333333"
|
|
72
|
-
d="M39.753,51.061c-0.403-0.123-0.722-0.287-0.956-0.488l0.359-0.809c0.229,0.182,0.511,0.33,0.845,0.443 c0.333,0.115,0.668,0.172,1.004,0.172c0.416,0,0.727-0.066,0.932-0.199s0.308-0.309,0.308-0.527c0-0.16-0.057-0.293-0.172-0.396 c-0.114-0.104-0.26-0.186-0.436-0.244s-0.416-0.125-0.72-0.199c-0.427-0.102-0.772-0.203-1.036-0.305 c-0.265-0.102-0.491-0.26-0.681-0.477c-0.189-0.215-0.283-0.508-0.283-0.875c0-0.311,0.084-0.592,0.252-0.844 c0.168-0.254,0.421-0.455,0.76-0.605c0.339-0.148,0.753-0.223,1.244-0.223c0.341,0,0.677,0.041,1.008,0.127 c0.33,0.086,0.616,0.209,0.855,0.369l-0.327,0.807c-0.246-0.143-0.502-0.252-0.769-0.328c-0.267-0.074-0.525-0.111-0.775-0.111 c-0.411,0-0.717,0.068-0.916,0.207c-0.2,0.139-0.301,0.324-0.301,0.553c0,0.16,0.058,0.291,0.172,0.393 c0.115,0.102,0.261,0.182,0.437,0.24s0.416,0.125,0.72,0.199c0.416,0.096,0.758,0.195,1.024,0.301 c0.267,0.104,0.494,0.262,0.684,0.475c0.189,0.215,0.284,0.502,0.284,0.865c0,0.309-0.084,0.59-0.252,0.84s-0.423,0.451-0.764,0.6 c-0.342,0.148-0.758,0.225-1.248,0.225C40.572,51.245,40.155,51.182,39.753,51.061z"
|
|
73
|
-
/>
|
|
74
|
-
<path
|
|
75
|
-
fill="#333333"
|
|
76
|
-
d="M45.445,50.872c-0.459-0.248-0.819-0.592-1.08-1.031c-0.262-0.439-0.393-0.932-0.393-1.477 c0-0.543,0.131-1.035,0.393-1.477c0.261-0.439,0.621-0.783,1.08-1.031c0.458-0.248,0.973-0.371,1.544-0.371 c0.57,0,1.085,0.123,1.544,0.371s0.818,0.592,1.08,1.027c0.261,0.438,0.392,0.932,0.392,1.48s-0.131,1.043-0.392,1.48 c-0.262,0.438-0.621,0.779-1.08,1.027s-0.974,0.373-1.544,0.373C46.418,51.245,45.903,51.12,45.445,50.872z M47.997,50.081 c0.299-0.168,0.533-0.402,0.704-0.705c0.171-0.301,0.256-0.639,0.256-1.012s-0.085-0.711-0.256-1.012s-0.405-0.535-0.704-0.703 s-0.635-0.252-1.008-0.252c-0.374,0-0.71,0.084-1.008,0.252c-0.299,0.168-0.534,0.402-0.704,0.703 c-0.171,0.301-0.256,0.639-0.256,1.012s0.085,0.711,0.256,1.012c0.17,0.303,0.405,0.537,0.704,0.705 c0.298,0.168,0.634,0.252,1.008,0.252C47.362,50.333,47.698,50.249,47.997,50.081z"
|
|
77
|
-
/>
|
|
78
|
-
<path
|
|
79
|
-
fill="#333333"
|
|
80
|
-
d="M54.846,51.165l-1.144-1.641c-0.049,0.006-0.12,0.008-0.217,0.008h-1.264v1.633h-1.04v-5.6h2.304 c0.485,0,0.908,0.08,1.269,0.238c0.359,0.16,0.636,0.391,0.828,0.689c0.191,0.299,0.288,0.652,0.288,1.063 c0,0.422-0.104,0.785-0.309,1.09c-0.205,0.303-0.5,0.529-0.884,0.68l1.288,1.84H54.846z M54.47,46.733 c-0.234-0.193-0.579-0.289-1.032-0.289h-1.216v2.232h1.216c0.453,0,0.798-0.098,1.032-0.293c0.234-0.193,0.352-0.471,0.352-0.828 C54.821,47.2,54.704,46.924,54.47,46.733z"
|
|
81
|
-
/>
|
|
82
|
-
<path fill="#333333" d="M57.101,45.565h1.04v5.6h-1.04V45.565z" />
|
|
83
|
-
<path
|
|
84
|
-
fill="#333333"
|
|
85
|
-
d="M63.356,49.868h-2.8l-0.552,1.297h-1.072l2.521-5.6h1.023l2.528,5.6h-1.088L63.356,49.868z M63.013,49.051 l-1.056-2.447l-1.049,2.447H63.013z"
|
|
86
|
-
/>
|
|
87
|
-
<path
|
|
88
|
-
fill="#333333"
|
|
89
|
-
d="M66.273,51.061c-0.403-0.123-0.722-0.287-0.956-0.488l0.359-0.809c0.229,0.182,0.511,0.33,0.845,0.443 c0.333,0.115,0.668,0.172,1.004,0.172c0.416,0,0.727-0.066,0.932-0.199s0.308-0.309,0.308-0.527c0-0.16-0.057-0.293-0.172-0.396 c-0.114-0.104-0.26-0.186-0.436-0.244s-0.416-0.125-0.72-0.199c-0.427-0.102-0.772-0.203-1.036-0.305 c-0.265-0.102-0.491-0.26-0.681-0.477c-0.189-0.215-0.283-0.508-0.283-0.875c0-0.311,0.084-0.592,0.252-0.844 c0.168-0.254,0.421-0.455,0.76-0.605c0.339-0.148,0.753-0.223,1.244-0.223c0.341,0,0.677,0.041,1.008,0.127 c0.33,0.086,0.616,0.209,0.855,0.369l-0.327,0.807c-0.246-0.143-0.502-0.252-0.769-0.328c-0.267-0.074-0.525-0.111-0.775-0.111 c-0.411,0-0.717,0.068-0.916,0.207c-0.2,0.139-0.301,0.324-0.301,0.553c0,0.16,0.058,0.291,0.172,0.393 c0.115,0.102,0.261,0.182,0.437,0.24s0.416,0.125,0.72,0.199c0.416,0.096,0.758,0.195,1.024,0.301 c0.267,0.104,0.494,0.262,0.684,0.475c0.189,0.215,0.284,0.502,0.284,0.865c0,0.309-0.084,0.59-0.252,0.84s-0.423,0.451-0.764,0.6 c-0.342,0.148-0.758,0.225-1.248,0.225C67.093,51.245,66.676,51.182,66.273,51.061z"
|
|
90
|
-
/>
|
|
91
|
-
</g>
|
|
92
|
-
</g>
|
|
93
|
-
<path
|
|
94
|
-
fill="#E2DFCF"
|
|
95
|
-
d="M45.992,0C20.632,0,0,20.631,0,45.993c0,25.359,20.632,45.992,45.992,45.992s45.992-20.633,45.992-45.992 C91.984,20.631,71.353,0,45.992,0z M45.992,82.657c-20.218,0-36.665-16.447-36.665-36.664c0-20.219,16.447-36.666,36.665-36.666 c20.217,0,36.664,16.447,36.664,36.666C82.656,66.209,66.209,82.657,45.992,82.657z"
|
|
96
|
-
/>
|
|
97
|
-
</svg>
|
|
98
|
-
</Icon>
|
|
99
|
-
);
|
|
100
|
-
};
|
|
101
|
-
AsesoriaBurbujaButton.defaultProps = { theme: {} };
|
|
102
|
-
const _t= withTheme(AsesoriaBurbujaButton);
|
|
103
|
-
|
|
104
|
-
export {_t as AsesoriaBurbujaButton }
|
|
@@ -1,104 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { withTheme } from 'styled-components';
|
|
3
|
-
import { Icon } from './styled-icon';
|
|
4
|
-
|
|
5
|
-
const AsesoriaBurbujaIcon = (props) => {
|
|
6
|
-
const { sublabel = '', size = '' } = props || {};
|
|
7
|
-
|
|
8
|
-
return (
|
|
9
|
-
<Icon width={size} display={sublabel !== '' ? 'block' : 'none'}>
|
|
10
|
-
<svg
|
|
11
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
12
|
-
version="1.1"
|
|
13
|
-
viewBox="0 0 91.984 91.985"
|
|
14
|
-
>
|
|
15
|
-
<path
|
|
16
|
-
fill="#E2DFCF"
|
|
17
|
-
d="M45.992,0C20.632,0,0,20.631,0,45.993c0,25.359,20.632,45.992,45.992,45.992s45.992-20.633,45.992-45.992 C91.984,20.631,71.353,0,45.992,0z M45.992,82.657c-20.218,0-36.665-16.447-36.665-36.664c0-20.219,16.447-36.666,36.665-36.666 c20.217,0,36.664,16.447,36.664,36.666C82.656,66.209,66.209,82.657,45.992,82.657z"
|
|
18
|
-
/>
|
|
19
|
-
<g>
|
|
20
|
-
<g>
|
|
21
|
-
<path
|
|
22
|
-
fill="#333333"
|
|
23
|
-
d="M26.3,49.868h-2.8l-0.552,1.297h-1.072l2.521-5.6h1.023l2.528,5.6H26.86L26.3,49.868z M25.956,49.051 L24.9,46.604l-1.049,2.447H25.956z"
|
|
24
|
-
/>
|
|
25
|
-
<path
|
|
26
|
-
fill="#333333"
|
|
27
|
-
d="M29.217,51.061c-0.403-0.123-0.722-0.287-0.956-0.488l0.359-0.809c0.229,0.182,0.511,0.33,0.845,0.443 c0.333,0.115,0.668,0.172,1.004,0.172c0.416,0,0.727-0.066,0.932-0.199s0.308-0.309,0.308-0.527c0-0.16-0.057-0.293-0.172-0.396 c-0.114-0.104-0.26-0.186-0.436-0.244s-0.416-0.125-0.72-0.199c-0.427-0.102-0.772-0.203-1.036-0.305 c-0.265-0.102-0.491-0.26-0.681-0.477c-0.189-0.215-0.283-0.508-0.283-0.875c0-0.311,0.084-0.592,0.252-0.844 c0.168-0.254,0.421-0.455,0.76-0.605c0.339-0.148,0.753-0.223,1.244-0.223c0.341,0,0.677,0.041,1.008,0.127 c0.33,0.086,0.616,0.209,0.855,0.369l-0.327,0.807c-0.246-0.143-0.502-0.252-0.769-0.328c-0.267-0.074-0.525-0.111-0.775-0.111 c-0.411,0-0.717,0.068-0.916,0.207c-0.2,0.139-0.301,0.324-0.301,0.553c0,0.16,0.058,0.291,0.172,0.393 c0.115,0.102,0.261,0.182,0.437,0.24s0.416,0.125,0.72,0.199c0.416,0.096,0.758,0.195,1.024,0.301 c0.267,0.104,0.494,0.262,0.684,0.475c0.189,0.215,0.284,0.502,0.284,0.865c0,0.309-0.084,0.59-0.252,0.84s-0.423,0.451-0.764,0.6 c-0.342,0.148-0.758,0.225-1.248,0.225C30.036,51.245,29.619,51.182,29.217,51.061z"
|
|
28
|
-
/>
|
|
29
|
-
<path
|
|
30
|
-
fill="#333333"
|
|
31
|
-
d="M38.036,50.292v0.873h-4.2v-5.6h4.088v0.871h-3.048v1.455h2.704v0.857h-2.704v1.543H38.036z"
|
|
32
|
-
/>
|
|
33
|
-
<path
|
|
34
|
-
fill="#333333"
|
|
35
|
-
d="M39.753,51.061c-0.403-0.123-0.722-0.287-0.956-0.488l0.359-0.809c0.229,0.182,0.511,0.33,0.845,0.443 c0.333,0.115,0.668,0.172,1.004,0.172c0.416,0,0.727-0.066,0.932-0.199s0.308-0.309,0.308-0.527c0-0.16-0.057-0.293-0.172-0.396 c-0.114-0.104-0.26-0.186-0.436-0.244s-0.416-0.125-0.72-0.199c-0.427-0.102-0.772-0.203-1.036-0.305 c-0.265-0.102-0.491-0.26-0.681-0.477c-0.189-0.215-0.283-0.508-0.283-0.875c0-0.311,0.084-0.592,0.252-0.844 c0.168-0.254,0.421-0.455,0.76-0.605c0.339-0.148,0.753-0.223,1.244-0.223c0.341,0,0.677,0.041,1.008,0.127 c0.33,0.086,0.616,0.209,0.855,0.369l-0.327,0.807c-0.246-0.143-0.502-0.252-0.769-0.328c-0.267-0.074-0.525-0.111-0.775-0.111 c-0.411,0-0.717,0.068-0.916,0.207c-0.2,0.139-0.301,0.324-0.301,0.553c0,0.16,0.058,0.291,0.172,0.393 c0.115,0.102,0.261,0.182,0.437,0.24s0.416,0.125,0.72,0.199c0.416,0.096,0.758,0.195,1.024,0.301 c0.267,0.104,0.494,0.262,0.684,0.475c0.189,0.215,0.284,0.502,0.284,0.865c0,0.309-0.084,0.59-0.252,0.84s-0.423,0.451-0.764,0.6 c-0.342,0.148-0.758,0.225-1.248,0.225C40.572,51.245,40.155,51.182,39.753,51.061z"
|
|
36
|
-
/>
|
|
37
|
-
<path
|
|
38
|
-
fill="#333333"
|
|
39
|
-
d="M45.445,50.872c-0.459-0.248-0.819-0.592-1.08-1.031c-0.262-0.439-0.393-0.932-0.393-1.477 c0-0.543,0.131-1.035,0.393-1.477c0.261-0.439,0.621-0.783,1.08-1.031c0.458-0.248,0.973-0.371,1.544-0.371 c0.57,0,1.085,0.123,1.544,0.371s0.818,0.592,1.08,1.027c0.261,0.438,0.392,0.932,0.392,1.48s-0.131,1.043-0.392,1.48 c-0.262,0.438-0.621,0.779-1.08,1.027s-0.974,0.373-1.544,0.373C46.418,51.245,45.903,51.12,45.445,50.872z M47.997,50.081 c0.299-0.168,0.533-0.402,0.704-0.705c0.171-0.301,0.256-0.639,0.256-1.012s-0.085-0.711-0.256-1.012s-0.405-0.535-0.704-0.703 s-0.635-0.252-1.008-0.252c-0.374,0-0.71,0.084-1.008,0.252c-0.299,0.168-0.534,0.402-0.704,0.703 c-0.171,0.301-0.256,0.639-0.256,1.012s0.085,0.711,0.256,1.012c0.17,0.303,0.405,0.537,0.704,0.705 c0.298,0.168,0.634,0.252,1.008,0.252C47.362,50.333,47.698,50.249,47.997,50.081z"
|
|
40
|
-
/>
|
|
41
|
-
<path
|
|
42
|
-
fill="#333333"
|
|
43
|
-
d="M54.846,51.165l-1.144-1.641c-0.049,0.006-0.12,0.008-0.217,0.008h-1.264v1.633h-1.04v-5.6h2.304 c0.485,0,0.908,0.08,1.269,0.238c0.359,0.16,0.636,0.391,0.828,0.689c0.191,0.299,0.288,0.652,0.288,1.063 c0,0.422-0.104,0.785-0.309,1.09c-0.205,0.303-0.5,0.529-0.884,0.68l1.288,1.84H54.846z M54.47,46.733 c-0.234-0.193-0.579-0.289-1.032-0.289h-1.216v2.232h1.216c0.453,0,0.798-0.098,1.032-0.293c0.234-0.193,0.352-0.471,0.352-0.828 C54.821,47.2,54.704,46.924,54.47,46.733z"
|
|
44
|
-
/>
|
|
45
|
-
<path fill="#333333" d="M57.101,45.565h1.04v5.6h-1.04V45.565z" />
|
|
46
|
-
<path
|
|
47
|
-
fill="#333333"
|
|
48
|
-
d="M63.356,49.868h-2.8l-0.552,1.297h-1.072l2.521-5.6h1.023l2.528,5.6h-1.088L63.356,49.868z M63.013,49.051 l-1.056-2.447l-1.049,2.447H63.013z"
|
|
49
|
-
/>
|
|
50
|
-
<path
|
|
51
|
-
fill="#333333"
|
|
52
|
-
d="M66.273,51.061c-0.403-0.123-0.722-0.287-0.956-0.488l0.359-0.809c0.229,0.182,0.511,0.33,0.845,0.443 c0.333,0.115,0.668,0.172,1.004,0.172c0.416,0,0.727-0.066,0.932-0.199s0.308-0.309,0.308-0.527c0-0.16-0.057-0.293-0.172-0.396 c-0.114-0.104-0.26-0.186-0.436-0.244s-0.416-0.125-0.72-0.199c-0.427-0.102-0.772-0.203-1.036-0.305 c-0.265-0.102-0.491-0.26-0.681-0.477c-0.189-0.215-0.283-0.508-0.283-0.875c0-0.311,0.084-0.592,0.252-0.844 c0.168-0.254,0.421-0.455,0.76-0.605c0.339-0.148,0.753-0.223,1.244-0.223c0.341,0,0.677,0.041,1.008,0.127 c0.33,0.086,0.616,0.209,0.855,0.369l-0.327,0.807c-0.246-0.143-0.502-0.252-0.769-0.328c-0.267-0.074-0.525-0.111-0.775-0.111 c-0.411,0-0.717,0.068-0.916,0.207c-0.2,0.139-0.301,0.324-0.301,0.553c0,0.16,0.058,0.291,0.172,0.393 c0.115,0.102,0.261,0.182,0.437,0.24s0.416,0.125,0.72,0.199c0.416,0.096,0.758,0.195,1.024,0.301 c0.267,0.104,0.494,0.262,0.684,0.475c0.189,0.215,0.284,0.502,0.284,0.865c0,0.309-0.084,0.59-0.252,0.84s-0.423,0.451-0.764,0.6 c-0.342,0.148-0.758,0.225-1.248,0.225C67.093,51.245,66.676,51.182,66.273,51.061z"
|
|
53
|
-
/>
|
|
54
|
-
</g>
|
|
55
|
-
</g>
|
|
56
|
-
<g>
|
|
57
|
-
<g>
|
|
58
|
-
<path
|
|
59
|
-
fill="#333333"
|
|
60
|
-
d="M26.3,49.868h-2.8l-0.552,1.297h-1.072l2.521-5.6h1.023l2.528,5.6H26.86L26.3,49.868z M25.956,49.051 L24.9,46.604l-1.049,2.447H25.956z"
|
|
61
|
-
/>
|
|
62
|
-
<path
|
|
63
|
-
fill="#333333"
|
|
64
|
-
d="M29.217,51.061c-0.403-0.123-0.722-0.287-0.956-0.488l0.359-0.809c0.229,0.182,0.511,0.33,0.845,0.443 c0.333,0.115,0.668,0.172,1.004,0.172c0.416,0,0.727-0.066,0.932-0.199s0.308-0.309,0.308-0.527c0-0.16-0.057-0.293-0.172-0.396 c-0.114-0.104-0.26-0.186-0.436-0.244s-0.416-0.125-0.72-0.199c-0.427-0.102-0.772-0.203-1.036-0.305 c-0.265-0.102-0.491-0.26-0.681-0.477c-0.189-0.215-0.283-0.508-0.283-0.875c0-0.311,0.084-0.592,0.252-0.844 c0.168-0.254,0.421-0.455,0.76-0.605c0.339-0.148,0.753-0.223,1.244-0.223c0.341,0,0.677,0.041,1.008,0.127 c0.33,0.086,0.616,0.209,0.855,0.369l-0.327,0.807c-0.246-0.143-0.502-0.252-0.769-0.328c-0.267-0.074-0.525-0.111-0.775-0.111 c-0.411,0-0.717,0.068-0.916,0.207c-0.2,0.139-0.301,0.324-0.301,0.553c0,0.16,0.058,0.291,0.172,0.393 c0.115,0.102,0.261,0.182,0.437,0.24s0.416,0.125,0.72,0.199c0.416,0.096,0.758,0.195,1.024,0.301 c0.267,0.104,0.494,0.262,0.684,0.475c0.189,0.215,0.284,0.502,0.284,0.865c0,0.309-0.084,0.59-0.252,0.84s-0.423,0.451-0.764,0.6 c-0.342,0.148-0.758,0.225-1.248,0.225C30.036,51.245,29.619,51.182,29.217,51.061z"
|
|
65
|
-
/>
|
|
66
|
-
<path
|
|
67
|
-
fill="#333333"
|
|
68
|
-
d="M38.036,50.292v0.873h-4.2v-5.6h4.088v0.871h-3.048v1.455h2.704v0.857h-2.704v1.543H38.036z"
|
|
69
|
-
/>
|
|
70
|
-
<path
|
|
71
|
-
fill="#333333"
|
|
72
|
-
d="M39.753,51.061c-0.403-0.123-0.722-0.287-0.956-0.488l0.359-0.809c0.229,0.182,0.511,0.33,0.845,0.443 c0.333,0.115,0.668,0.172,1.004,0.172c0.416,0,0.727-0.066,0.932-0.199s0.308-0.309,0.308-0.527c0-0.16-0.057-0.293-0.172-0.396 c-0.114-0.104-0.26-0.186-0.436-0.244s-0.416-0.125-0.72-0.199c-0.427-0.102-0.772-0.203-1.036-0.305 c-0.265-0.102-0.491-0.26-0.681-0.477c-0.189-0.215-0.283-0.508-0.283-0.875c0-0.311,0.084-0.592,0.252-0.844 c0.168-0.254,0.421-0.455,0.76-0.605c0.339-0.148,0.753-0.223,1.244-0.223c0.341,0,0.677,0.041,1.008,0.127 c0.33,0.086,0.616,0.209,0.855,0.369l-0.327,0.807c-0.246-0.143-0.502-0.252-0.769-0.328c-0.267-0.074-0.525-0.111-0.775-0.111 c-0.411,0-0.717,0.068-0.916,0.207c-0.2,0.139-0.301,0.324-0.301,0.553c0,0.16,0.058,0.291,0.172,0.393 c0.115,0.102,0.261,0.182,0.437,0.24s0.416,0.125,0.72,0.199c0.416,0.096,0.758,0.195,1.024,0.301 c0.267,0.104,0.494,0.262,0.684,0.475c0.189,0.215,0.284,0.502,0.284,0.865c0,0.309-0.084,0.59-0.252,0.84s-0.423,0.451-0.764,0.6 c-0.342,0.148-0.758,0.225-1.248,0.225C40.572,51.245,40.155,51.182,39.753,51.061z"
|
|
73
|
-
/>
|
|
74
|
-
<path
|
|
75
|
-
fill="#333333"
|
|
76
|
-
d="M45.445,50.872c-0.459-0.248-0.819-0.592-1.08-1.031c-0.262-0.439-0.393-0.932-0.393-1.477 c0-0.543,0.131-1.035,0.393-1.477c0.261-0.439,0.621-0.783,1.08-1.031c0.458-0.248,0.973-0.371,1.544-0.371 c0.57,0,1.085,0.123,1.544,0.371s0.818,0.592,1.08,1.027c0.261,0.438,0.392,0.932,0.392,1.48s-0.131,1.043-0.392,1.48 c-0.262,0.438-0.621,0.779-1.08,1.027s-0.974,0.373-1.544,0.373C46.418,51.245,45.903,51.12,45.445,50.872z M47.997,50.081 c0.299-0.168,0.533-0.402,0.704-0.705c0.171-0.301,0.256-0.639,0.256-1.012s-0.085-0.711-0.256-1.012s-0.405-0.535-0.704-0.703 s-0.635-0.252-1.008-0.252c-0.374,0-0.71,0.084-1.008,0.252c-0.299,0.168-0.534,0.402-0.704,0.703 c-0.171,0.301-0.256,0.639-0.256,1.012s0.085,0.711,0.256,1.012c0.17,0.303,0.405,0.537,0.704,0.705 c0.298,0.168,0.634,0.252,1.008,0.252C47.362,50.333,47.698,50.249,47.997,50.081z"
|
|
77
|
-
/>
|
|
78
|
-
<path
|
|
79
|
-
fill="#333333"
|
|
80
|
-
d="M54.846,51.165l-1.144-1.641c-0.049,0.006-0.12,0.008-0.217,0.008h-1.264v1.633h-1.04v-5.6h2.304 c0.485,0,0.908,0.08,1.269,0.238c0.359,0.16,0.636,0.391,0.828,0.689c0.191,0.299,0.288,0.652,0.288,1.063 c0,0.422-0.104,0.785-0.309,1.09c-0.205,0.303-0.5,0.529-0.884,0.68l1.288,1.84H54.846z M54.47,46.733 c-0.234-0.193-0.579-0.289-1.032-0.289h-1.216v2.232h1.216c0.453,0,0.798-0.098,1.032-0.293c0.234-0.193,0.352-0.471,0.352-0.828 C54.821,47.2,54.704,46.924,54.47,46.733z"
|
|
81
|
-
/>
|
|
82
|
-
<path fill="#333333" d="M57.101,45.565h1.04v5.6h-1.04V45.565z" />
|
|
83
|
-
<path
|
|
84
|
-
fill="#333333"
|
|
85
|
-
d="M63.356,49.868h-2.8l-0.552,1.297h-1.072l2.521-5.6h1.023l2.528,5.6h-1.088L63.356,49.868z M63.013,49.051 l-1.056-2.447l-1.049,2.447H63.013z"
|
|
86
|
-
/>
|
|
87
|
-
<path
|
|
88
|
-
fill="#333333"
|
|
89
|
-
d="M66.273,51.061c-0.403-0.123-0.722-0.287-0.956-0.488l0.359-0.809c0.229,0.182,0.511,0.33,0.845,0.443 c0.333,0.115,0.668,0.172,1.004,0.172c0.416,0,0.727-0.066,0.932-0.199s0.308-0.309,0.308-0.527c0-0.16-0.057-0.293-0.172-0.396 c-0.114-0.104-0.26-0.186-0.436-0.244s-0.416-0.125-0.72-0.199c-0.427-0.102-0.772-0.203-1.036-0.305 c-0.265-0.102-0.491-0.26-0.681-0.477c-0.189-0.215-0.283-0.508-0.283-0.875c0-0.311,0.084-0.592,0.252-0.844 c0.168-0.254,0.421-0.455,0.76-0.605c0.339-0.148,0.753-0.223,1.244-0.223c0.341,0,0.677,0.041,1.008,0.127 c0.33,0.086,0.616,0.209,0.855,0.369l-0.327,0.807c-0.246-0.143-0.502-0.252-0.769-0.328c-0.267-0.074-0.525-0.111-0.775-0.111 c-0.411,0-0.717,0.068-0.916,0.207c-0.2,0.139-0.301,0.324-0.301,0.553c0,0.16,0.058,0.291,0.172,0.393 c0.115,0.102,0.261,0.182,0.437,0.24s0.416,0.125,0.72,0.199c0.416,0.096,0.758,0.195,1.024,0.301 c0.267,0.104,0.494,0.262,0.684,0.475c0.189,0.215,0.284,0.502,0.284,0.865c0,0.309-0.084,0.59-0.252,0.84s-0.423,0.451-0.764,0.6 c-0.342,0.148-0.758,0.225-1.248,0.225C67.093,51.245,66.676,51.182,66.273,51.061z"
|
|
90
|
-
/>
|
|
91
|
-
</g>
|
|
92
|
-
</g>
|
|
93
|
-
<path
|
|
94
|
-
fill="#E2DFCF"
|
|
95
|
-
d="M45.992,0C20.632,0,0,20.631,0,45.993c0,25.359,20.632,45.992,45.992,45.992s45.992-20.633,45.992-45.992 C91.984,20.631,71.353,0,45.992,0z M45.992,82.657c-20.218,0-36.665-16.447-36.665-36.664c0-20.219,16.447-36.666,36.665-36.666 c20.217,0,36.664,16.447,36.664,36.666C82.656,66.209,66.209,82.657,45.992,82.657z"
|
|
96
|
-
/>
|
|
97
|
-
</svg>
|
|
98
|
-
</Icon>
|
|
99
|
-
);
|
|
100
|
-
};
|
|
101
|
-
AsesoriaBurbujaIcon.defaultProps = { theme: {} };
|
|
102
|
-
const _t= withTheme(AsesoriaBurbujaIcon);
|
|
103
|
-
|
|
104
|
-
export {_t as AsesoriaBurbujaIcon}
|