siam-ui-utils 2.0.15 → 2.0.17

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.
Files changed (33) hide show
  1. package/package.json +1 -1
  2. package/src/archivos-adjuntos/index.jsx +13 -11
  3. package/src/iconos/index.js +1 -30
  4. package/src/index.js +0 -1
  5. package/src/iconos/anular-ayuda-icon.jsx +0 -72
  6. package/src/iconos/asesoria-burbuja-button.jsx +0 -104
  7. package/src/iconos/asesoria-burbuja-icon.jsx +0 -104
  8. package/src/iconos/atencion-presencial-icon.jsx +0 -79
  9. package/src/iconos/atencion-telefonica-icon.jsx +0 -44
  10. package/src/iconos/atencion-turno-telefonico-icon.jsx +0 -53
  11. package/src/iconos/atencion-virtual-icon.jsx +0 -37
  12. package/src/iconos/biblioteca-burbuja-button.jsx +0 -59
  13. package/src/iconos/biblioteca-burbuja-icon.jsx +0 -66
  14. package/src/iconos/cancelar-turno-icon.jsx +0 -29
  15. package/src/iconos/codigo-verificacion-icon.jsx +0 -54
  16. package/src/iconos/curso-autogestionado-color-icon.jsx +0 -203
  17. package/src/iconos/curso-autogestionado-icon.jsx +0 -49
  18. package/src/iconos/curso-burbuja-button.jsx +0 -41
  19. package/src/iconos/curso-burbuja-icon.jsx +0 -97
  20. package/src/iconos/curso-presencial-color-icon.jsx +0 -256
  21. package/src/iconos/curso-presencial-icon.jsx +0 -71
  22. package/src/iconos/curso-virtual-color-icon.jsx +0 -109
  23. package/src/iconos/curso-virtual-icon.jsx +0 -40
  24. package/src/iconos/delegaciones-icon.jsx +0 -66
  25. package/src/iconos/forgot-dni-icon.jsx +0 -42
  26. package/src/iconos/forgot-password-icon.jsx +0 -46
  27. package/src/iconos/lapiz-act-contacto-perf-button.jsx +0 -44
  28. package/src/iconos/styled-icon.jsx +0 -25
  29. package/src/iconos/styled-timer-reenv-cod.jsx +0 -16
  30. package/src/iconos/user/user-styled-icon.jsx +0 -22
  31. package/src/iconos/verificar-sin-verificar-icon.jsx +0 -39
  32. package/src/iconos/verificar-verificado-icon.jsx +0 -30
  33. package/src/iconos/whatsapp-icon-button.jsx +0 -41
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "siam-ui-utils",
3
- "version": "2.0.15",
3
+ "version": "2.0.17",
4
4
  "keywords": [
5
5
  "ampf-react",
6
6
  "ampf-utils",
@@ -122,16 +122,18 @@ export const DropzoneUploader = ({
122
122
  }, [totalFiles])
123
123
 
124
124
  return (
125
- <Dropzone
126
- disableUpload={false}
127
- maxFiles={totalFilesDU < maxFiles ? maxFiles : 0}
128
- maxSize={maxSize} // en megas
129
- InputComponent={Input}
130
- PreviewComponent={CustomPreview}
131
- classNames={{ dropzone: `dropzone-upload-frame ${classNames}`}}
132
- onChangeStatus={handleChangeStatus}
133
- getFilesFromEvent={getFilesFromEvent}
134
- accept={accept}
135
- />
125
+ <div className={`${classNames}`}>
126
+ <Dropzone
127
+ disableUpload={false}
128
+ maxFiles={totalFilesDU < maxFiles ? maxFiles : 0}
129
+ maxSize={maxSize} // en megas
130
+ InputComponent={Input}
131
+ PreviewComponent={CustomPreview}
132
+ classNames={{ dropzone: 'dropzone-upload-frame'}}
133
+ onChangeStatus={handleChangeStatus}
134
+ getFilesFromEvent={getFilesFromEvent}
135
+ accept={accept}
136
+ />
137
+ </div>
136
138
  )
137
139
  }
@@ -1,31 +1,2 @@
1
- export * from "./anular-ayuda-icon";
2
- export * from "./asesoria-burbuja-button";
3
- export * from "./asesoria-burbuja-icon";
4
- export * from "./atencion-presencial-icon";
5
- export * from "./atencion-telefonica-icon";
6
- export * from "./atencion-turno-telefonico-icon";
7
- export * from "./atencion-virtual-icon";
8
- export * from "./biblioteca-burbuja-button";
9
- export * from "./biblioteca-burbuja-icon";
10
- export * from "./cancelar-turno-icon";
11
- export * from "./codigo-verificacion-icon";
12
1
  export * from "./constants-svg";
13
- export * from "./curso-autogestionado-color-icon";
14
- export * from "./curso-autogestionado-icon";
15
- export * from "./curso-burbuja-button";
16
- export * from "./curso-burbuja-icon";
17
- export * from "./curso-presencial-color-icon";
18
- export * from "./curso-presencial-icon";
19
- export * from "./curso-virtual-color-icon";
20
- export * from "./curso-virtual-icon";
21
- export * from "./delegaciones-icon";
22
- export * from "./forgot-dni-icon";
23
- export * from "./forgot-password-icon";
24
- export * from "./icon-button-svg";
25
- export * from "./lapiz-act-contacto-perf-button";
26
- export * from "./styled-icon";
27
- export * from "./user/user-styled-icon";
28
- export * from "./styled-timer-reenv-cod";
29
- export * from "./verificar-sin-verificar-icon";
30
- export * from "./verificar-verificado-icon";
31
- export * from "./whatsapp-icon-button";
2
+ export * from "./icon-button-svg";
package/src/index.js CHANGED
@@ -2,6 +2,5 @@ export * from './archivos-adjuntos'
2
2
  export * from './bridges'
3
3
  export * from './CustomBootstrap'
4
4
  export * from './CustomSelectInput'
5
- export * from './iconos'
6
5
  export * from './IntlMessages'
7
6
  export * from './tomar-foto'
@@ -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}
@@ -1,79 +0,0 @@
1
- import React from 'react';
2
- import { withTheme } from 'styled-components';
3
- import { Icon } from './styled-icon';
4
-
5
- const AtencionPresencial = (props) => {
6
- const { sublabel = '', isSelected = false } = props || {};
7
- const { size = '' } = props || {};
8
- return (
9
- <Icon width={size} display={sublabel !== '' ? 'block' : 'none'}>
10
- <svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="8 8 24 24">
11
- <g>
12
- <path
13
- fill={isSelected ? '#cccc00' : '#666666'}
14
- d="M28.182,16.474c0.148,0,0.243-0.121,0.243-0.241c0-0.147-0.122-0.243-0.243-0.243
15
- c-0.118,0-0.239,0.122-0.239,0.243C27.942,16.375,28.063,16.474,28.182,16.474z"
16
- />
17
- <path
18
- fill={isSelected ? '#cccc00' : '#666666'}
19
- d="M31.478,20.421c-0.048-0.242-0.484-2.397-0.824-3.22c-0.047-0.097-0.072-0.195-0.121-0.339
20
- c-0.339-0.897-0.92-2.495-2.398-2.665l0.195,1.478c0.241,0.072,0.435,0.289,0.435,0.557c0,0.315-0.268,0.582-0.584,0.582
21
- c-0.313,0-0.581-0.267-0.581-0.582c0-0.242,0.172-0.459,0.39-0.533l-0.17-1.527h-1.961l-0.17,1.357
22
- c0.388,0,0.678,0.315,0.678,0.704v0.507c0,0.096-0.072,0.169-0.171,0.169h-0.337c-0.098,0-0.171-0.073-0.171-0.169
23
- s0.072-0.169,0.171-0.169h0.168v-0.338c0-0.194-0.168-0.364-0.363-0.364h-0.338c-0.192,0-0.363,0.169-0.363,0.364v0.338h0.171
24
- c0.097,0,0.168,0.073,0.168,0.169s-0.07,0.169-0.168,0.169h-0.34c-0.099,0-0.171-0.073-0.171-0.169v-0.507
25
- c0-0.387,0.315-0.704,0.703-0.704h0.022l0.17-1.357h-0.022c-1.382,0-2.059,1.406-2.495,2.327c-0.1,0.218-0.268,0.533-0.315,0.605
26
- c-0.29,0.291-0.871,0.459-1.358,0.532c0.195,0.654,0.364,1.43,0.462,1.963c0.751-0.124,1.719-0.438,2.35-1.115
27
- c0.193-0.218,0.34-0.485,0.509-0.774l0.071,3.341l-0.968,8.333c-0.074,0.58,0.338,1.088,0.92,1.162
28
- c0.58,0.049,1.09-0.339,1.161-0.92l0.874-7.556l0.872,7.556c0.071,0.533,0.507,0.92,1.039,0.92c0.048,0,0.075,0,0.121,0
29
- c0.583-0.073,0.995-0.582,0.921-1.162l-0.968-8.333l0.071-3.244c0.024,0.047,0.048,0.096,0.048,0.144
30
- c0.194,0.485,0.533,2.01,0.703,2.859c0.097,0.483,0.508,0.796,0.97,0.796c0.069,0,0.121,0,0.193-0.022
31
- C31.233,21.487,31.597,20.956,31.478,20.421z"
32
- />
33
- <circle
34
- fill={isSelected ? '#cccc00' : '#666666'}
35
- cx="26.682"
36
- cy="11.557"
37
- r="2.108"
38
- />
39
- <path
40
- fill={isSelected ? '#cccc00' : '#666666'}
41
- d="M20.094,17.151c-0.048-0.097-0.07-0.218-0.121-0.338c-0.339-0.921-0.968-2.616-2.542-2.616h-2.422
42
- c-1.478,0-2.108,1.478-2.471,2.422c-0.048,0.023-0.097,0.049-0.121,0.121l-1.042,3.512c-0.172,0.532,0.144,1.088,0.679,1.235
43
- c0.047,0,0.071,0.024,0.119,0.024c0.049,0,0.122,0.024,0.17,0.024c0.435,0,0.824-0.267,0.945-0.704l0.872-2.93l0.074,3.173
44
- l-0.969,8.234c-0.072,0.582,0.339,1.091,0.92,1.163c0.049,0,0.072,0,0.121,0c0.535,0,0.971-0.388,1.043-0.92l0.873-7.459
45
- l0.871,7.435c0.073,0.58,0.581,0.992,1.164,0.92c0.582-0.072,0.992-0.581,0.919-1.163l-0.969-8.235l0.073-3.585
46
- c0.048,0.147,0.097,0.267,0.145,0.364c0.194,0.484,0.559,2.034,0.702,2.883c0.098,0.484,0.583,0.8,1.066,0.701
47
- c0.484-0.097,0.799-0.556,0.702-1.065C20.868,20.131,20.433,17.976,20.094,17.151z M12.9,20.688
48
- c-0.072,0.242-0.315,0.437-0.581,0.437c-0.025,0-0.073,0-0.098,0s-0.049,0-0.074-0.024c-0.144-0.049-0.242-0.121-0.315-0.241
49
- l1.091-0.267L12.9,20.688z M13.07,20.131l-1.308,0.315c0-0.025,0-0.074,0-0.097l0.121-0.388l1.331-0.314L13.07,20.131z
50
- M13.336,19.21l-1.332,0.315l0.144-0.483l1.333-0.316L13.336,19.21z M13.626,18.266l-1.332,0.315l0.145-0.484l1.333-0.316
51
- L13.626,18.266z M13.894,17.346l-1.332,0.315l0.193-0.629l1.188,0.192L13.894,17.346z"
52
- />
53
- <path
54
- fill={isSelected ? '#cccc00' : '#666666'}
55
- d="M16.22,9.449c1.162,0,2.106,0.944,2.106,2.107c0,1.165-0.944,2.108-2.106,2.108
56
- c-1.166,0-2.108-0.944-2.108-2.108C14.111,10.393,15.056,9.449,16.22,9.449z"
57
- />
58
- <path
59
- fill={isSelected ? '#cccc00' : '#666666'}
60
- d="M10.649,15.94l-0.534,0.243c-0.096,0.049-0.123,0.169-0.048,0.218l1.429,1.018
61
- c0.121,0.072,0.265-0.072,0.169-0.169l-0.583-0.75l0.583-0.267c0.073-0.024,0.096-0.122,0.048-0.194l-1.064-1.259
62
- c-0.05-0.048-0.098-0.048-0.148-0.024l-0.604,0.291c-0.074,0-0.097,0.097-0.026,0.169L10.649,15.94z"
63
- />
64
- <path
65
- fill={isSelected ? '#cccc00' : '#666666'}
66
- d="M11.327,17.976l-0.922-0.122l0.219-0.605c0.026-0.072-0.024-0.169-0.097-0.169l-1.67-0.146
67
- c-0.049,0-0.124,0.024-0.124,0.072l-0.217,0.63c-0.048,0.097,0.023,0.17,0.096,0.17l1.066-0.026l-0.193,0.559
68
- c-0.025,0.097,0.049,0.192,0.146,0.169l1.718-0.291C11.471,18.194,11.471,17.976,11.327,17.976z"
69
- />
70
- </g>
71
- </svg>
72
- <label>{sublabel}</label>
73
- </Icon>
74
- );
75
- };
76
- AtencionPresencial.defaultProps = { theme: {} };
77
- const _t =withTheme(AtencionPresencial);
78
-
79
- export {_t as AtencionPresencial}
@@ -1,44 +0,0 @@
1
- import React from 'react';
2
- import { withTheme } from 'styled-components';
3
- import { Icon } from './styled-icon';
4
-
5
- const AtencionTelefonica = (props) => {
6
- const { sublabel = '', showTitle = true } = props || {};
7
- const { size = '' } = props || {};
8
- return (
9
- <Icon
10
- title={showTitle ? 'Llamar a delegación' : ''}
11
- width={size}
12
- display={sublabel !== '' ? 'block' : 'none'}
13
- >
14
- <svg
15
- version="1.1"
16
- id="Capa_1"
17
- xmlns="http://www.w3.org/2000/svg"
18
- viewBox="8 8 24 24"
19
- >
20
- <path
21
- fill="#666666"
22
- d="M28.449,24.384c-0.714-0.425-1.43-0.847-2.146-1.27l-1.349-0.796c-0.576-0.34-1.227-0.254-1.692,0.222
23
- c-0.236,0.245-0.476,0.488-0.716,0.731L22.324,23.5c-0.078,0.078-0.16,0.097-0.269,0.078c-0.401-0.072-0.764-0.273-1.066-0.457
24
- c-0.702-0.418-1.388-0.969-2.11-1.693c-0.583-0.582-1.184-1.187-1.649-1.88c-0.318-0.475-0.643-0.985-0.803-1.576
25
- c-0.034-0.124-0.01-0.212,0.082-0.302c0.16-0.157,0.317-0.315,0.475-0.476c0.132-0.131,0.266-0.265,0.398-0.396
26
- c0.341-0.338,0.532-0.969,0.216-1.475c-0.04-0.062-0.072-0.131-0.106-0.197c-0.017-0.033-0.035-0.068-0.052-0.103l-0.474-0.896
27
- c-0.444-0.844-0.89-1.688-1.337-2.53c-0.154-0.288-0.367-0.474-0.633-0.552c-0.353-0.102-0.686-0.005-0.975,0.285l-0.856,0.854
28
- c-0.555,0.555-1.11,1.11-1.665,1.668c-0.117,0.119-0.208,0.265-0.279,0.392c-0.165,0.292-0.233,0.626-0.218,1.052
29
- C11.001,15.308,11,15.315,11,15.326c0.001,0.014,0.003,0.028,0.008,0.042c0.018,0.144,0.029,0.292,0.042,0.434
30
- c0.016,0.212,0.03,0.43,0.072,0.645c0.195,1.058,0.6,2.119,1.233,3.243c0.322,0.569,0.697,1.156,1.217,1.9
31
- c0.696,0.999,1.532,1.871,2.329,2.665c0.61,0.606,1.432,1.392,2.366,2.075c0.44,0.32,0.892,0.614,1.279,0.856
32
- c0.836,0.527,1.701,0.959,2.571,1.286c0.943,0.35,1.847,0.521,2.763,0.521h0.013c0.511,0,0.951-0.186,1.313-0.552
33
- c0.154-0.158,0.312-0.313,0.471-0.469l0.435-0.432c0.523-0.521,1.049-1.042,1.572-1.561c0.191-0.191,0.294-0.401,0.312-0.642
34
- C29.028,24.94,28.844,24.615,28.449,24.384z M24.88,28.854L24.88,28.854L24.88,28.854L24.88,28.854z"
35
- />
36
- </svg>
37
- <label>{sublabel}</label>
38
- </Icon>
39
- );
40
- };
41
- AtencionTelefonica.defaultProps = { theme: {} };
42
- const _t=withTheme(AtencionTelefonica);
43
-
44
- export {_t as AtencionTelefonica}
@@ -1,53 +0,0 @@
1
- import React from 'react';
2
- import { withTheme } from 'styled-components';
3
- import { Icon } from './styled-icon';
4
-
5
- const AtencionTurnoTelefonico = (props) => {
6
- const { sublabel = '', isSelected = false, title="Atención telefónica" } = props || {};
7
- const { size = '', width = '', height = '' } = props || {};
8
- return (
9
- <Icon
10
- title={title}
11
- width={size || width}
12
- height={height}
13
- display={sublabel !== '' ? 'block' : 'none'}
14
- >
15
- <svg
16
- version="1.1"
17
- xmlns="http://www.w3.org/2000/svg"
18
- viewBox="30.799 41.645 14.118 19.147"
19
- >
20
- <g>
21
- <g>
22
- <path
23
- fill={isSelected ? '#cccc00' : '#666666'}
24
- d="M42.394,41.969h-9.071c-1.081,0-1.918,0.883-1.918,1.92v14.672c0,0.988,0.826,1.908,1.918,1.908h9.071
25
- c1.058,0,1.918-0.861,1.918-1.916V43.889C44.312,42.83,43.453,41.969,42.394,41.969L42.394,41.969z M37.446,43.061h0.828
26
- c0.204,0,0.37,0.166,0.37,0.371s-0.166,0.375-0.37,0.375h-0.828c-0.208,0-0.371-0.17-0.371-0.375S37.238,43.061,37.446,43.061z
27
- M38.579,59.244h-1.44c-0.206,0-0.375-0.168-0.375-0.375c0-0.203,0.169-0.371,0.375-0.371h1.44c0.204,0,0.372,0.168,0.372,0.371
28
- C38.951,59.076,38.783,59.244,38.579,59.244z M42.89,57.273H32.827V44.896H42.89V57.273L42.89,57.273z"
29
- />
30
- </g>
31
- <g>
32
- <path
33
- fill={isSelected ? '#cccc00' : '#666666'}
34
- d="M38.365,53.83c0-1.725-1.395-3.119-3.119-3.119c-0.259,0-0.475,0.211-0.475,0.473s0.214,0.473,0.475,0.473
35
- c1.205,0,2.174,0.969,2.174,2.174c0,0.26,0.214,0.473,0.474,0.473C38.152,54.303,38.365,54.115,38.365,53.83z"
36
- />
37
- <path
38
- fill={isSelected ? '#cccc00' : '#666666'}
39
- d="M39.997,53.83c0,0.26,0.213,0.473,0.473,0.473s0.473-0.213,0.473-0.473c0-3.143-2.553-5.695-5.696-5.695
40
- c-0.259,0-0.475,0.211-0.475,0.473c0,0.26,0.214,0.475,0.475,0.475C37.87,49.082,39.997,51.232,39.997,53.83L39.997,53.83
41
- L39.997,53.83z"
42
- />
43
- </g>
44
- </g>
45
- </svg>
46
- <label>{sublabel}</label>
47
- </Icon>
48
- );
49
- };
50
- AtencionTurnoTelefonico.defaultProps = { theme: {} };
51
- const _t= withTheme(AtencionTurnoTelefonico);
52
-
53
- export {_t as AtencionTurnoTelefonico}
@@ -1,37 +0,0 @@
1
- import React from 'react';
2
- import { withTheme } from 'styled-components';
3
- import { Icon } from './styled-icon';
4
-
5
- const AtencionVirtual = (props) => {
6
- const { sublabel = '', showTitle = true, isSelected = false } = props || {};
7
- const { size = '' } = props || {};
8
- return (
9
- <Icon
10
- title={showTitle ? 'Atención virtual' : ''}
11
- width={size}
12
- display={sublabel !== '' ? 'block' : 'none'}
13
- >
14
- <svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="8 8 24 24">
15
- <path
16
- fill={isSelected ? '#cccc00' : '#666666'}
17
- d="M13.44,25.121v-1.851c0-0.38,0.18-0.76,0.468-1.003c1.675-1.36,3.481-2.275,3.861-2.455
18
- c0.043-0.023,0.065-0.065,0.065-0.113v-0.957c-0.245-0.424-0.379-0.892-0.446-1.316c-0.156-0.023-0.356-0.223-0.558-0.96
19
- c-0.29-1.005,0.023-1.16,0.27-1.139c0,0-0.692-2.364,1.002-3.414c0,0-0.291-0.244-0.269-0.581c0,0,1.651,0.18,2.456,0.023
20
- c0.803-0.155,1.674,0.47,1.805,1.071c0,0,1.698-0.133,0.983,2.899c0,0,0,0.068-0.045,0.181h0.045
21
- c0.201,0.066,0.337,0.334,0.113,1.115c-0.269,0.958-0.515,1.025-0.671,0.915c-0.066,0.336-0.157,0.69-0.335,1.049
22
- c0,0.49,0,0.938,0,1.113c0,0.047,0.022,0.091,0.066,0.113c0.357,0.18,2.188,1.095,3.859,2.455c0.29,0.243,0.471,0.623,0.471,1.003
23
- v1.851 M29.64,25.948h-0.068V15.104c0-0.847-0.69-1.539-1.54-1.539h-1.448h-2.211v2.098h2.211h0.892v10.263h-5.422v0.113
24
- c0,0.312-0.269,0.579-0.58,0.579h-2.944c-0.313,0-0.582-0.268-0.582-0.579v-0.113h-5.398V15.662h1.382h1.695v-2.098h-1.695h-1.963
25
- c-0.848,0-1.54,0.692-1.54,1.539v10.821h-0.066H9v1.05c0,0.937,0.76,1.693,1.695,1.693h1.628h15.352h1.628
26
- c0.938,0,1.696-0.757,1.696-1.693v-1.05h-1.36V25.948L29.64,25.948z"
27
- />
28
- </svg>
29
-
30
- <label>{sublabel}</label>
31
- </Icon>
32
- );
33
- };
34
- AtencionVirtual.defaultProps = { theme: {} };
35
- const _t= withTheme(AtencionVirtual);
36
-
37
- export {_t as AtencionVirtual}