siam-ui-utils 1.0.5 → 1.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/CustomBootstrap.tsx +10 -0
- package/CustomSelectInput.tsx +12 -0
- package/IntlMessages.tsx +8 -0
- package/dist_browser/src/CustomBootstrap.tsx +10 -0
- package/dist_browser/src/CustomSelectInput.tsx +12 -0
- package/dist_browser/src/IntlMessages.tsx +8 -0
- package/dist_browser/src/constants/defaultValues.ts +7 -0
- package/dist_browser/src/iconos/anular-ayuda-icon.tsx +72 -0
- package/dist_browser/src/iconos/asesoria-burbuja-button.tsx +102 -0
- package/dist_browser/src/iconos/asesoria-burbuja-icon.tsx +102 -0
- package/dist_browser/src/iconos/atencion-presencial-icon.tsx +77 -0
- package/dist_browser/src/iconos/atencion-telefonica-icon.tsx +42 -0
- package/dist_browser/src/iconos/atencion-turno-telefonico-icon.tsx +51 -0
- package/dist_browser/src/iconos/atencion-virtual-icon.tsx +35 -0
- package/dist_browser/src/iconos/biblioteca-burbuja-button.tsx +57 -0
- package/dist_browser/src/iconos/biblioteca-burbuja-icon.tsx +65 -0
- package/dist_browser/src/iconos/cancelar-turno-icon.tsx +27 -0
- package/dist_browser/src/iconos/codigo-verificacion-icon.tsx +53 -0
- package/dist_browser/src/iconos/constants-svg.ts +659 -0
- package/dist_browser/src/iconos/curso-autogestionado-color-icon.tsx +202 -0
- package/dist_browser/src/iconos/curso-autogestionado-icon.tsx +48 -0
- package/dist_browser/src/iconos/curso-burbuja-button.tsx +40 -0
- package/dist_browser/src/iconos/curso-burbuja-icon.tsx +96 -0
- package/dist_browser/src/iconos/curso-presencial-color-icon.tsx +255 -0
- package/dist_browser/src/iconos/curso-presencial-icon.tsx +70 -0
- package/dist_browser/src/iconos/curso-virtual-color-icon.tsx +108 -0
- package/dist_browser/src/iconos/curso-virtual-icon.tsx +38 -0
- package/dist_browser/src/iconos/delegaciones-icon.tsx +65 -0
- package/dist_browser/src/iconos/forgot-dni-icon.tsx +41 -0
- package/dist_browser/src/iconos/forgot-password-icon.tsx +45 -0
- package/dist_browser/src/iconos/icon-button-svg.tsx +52 -0
- package/dist_browser/src/iconos/index.ts +42 -0
- package/dist_browser/src/iconos/lapiz-act-contacto-perf-button.tsx +43 -0
- package/dist_browser/src/iconos/styled-icon.tsx +25 -0
- package/dist_browser/src/iconos/user/styled-icon.tsx +24 -0
- package/dist_browser/src/iconos/verificar-sin-verificar-icon.tsx +37 -0
- package/dist_browser/src/iconos/verificar-verificado-icon.tsx +29 -0
- package/dist_browser/src/iconos/whatsapp-icon-button.tsx +40 -0
- package/dist_browser/src/index.ts +4 -0
- package/index.d.ts +52 -1
- package/index.ts +4 -0
- package/package.json +7 -3
- package/src/CustomBootstrap.tsx +3 -4
- package/src/CustomSelectInput.tsx +1 -1
- package/src/IntlMessages.tsx +2 -2
- package/src/constants/defaultValues.ts +7 -0
- package/src/iconos/anular-ayuda-icon.tsx +72 -0
- package/src/iconos/asesoria-burbuja-button.tsx +102 -0
- package/src/iconos/asesoria-burbuja-icon.tsx +102 -0
- package/src/iconos/atencion-presencial-icon.tsx +77 -0
- package/src/iconos/atencion-telefonica-icon.tsx +42 -0
- package/src/iconos/atencion-turno-telefonico-icon.tsx +51 -0
- package/src/iconos/atencion-virtual-icon.tsx +35 -0
- package/src/iconos/biblioteca-burbuja-button.tsx +57 -0
- package/src/iconos/biblioteca-burbuja-icon.tsx +65 -0
- package/src/iconos/cancelar-turno-icon.tsx +27 -0
- package/src/iconos/codigo-verificacion-icon.tsx +53 -0
- package/src/iconos/constants-svg.ts +659 -0
- package/src/iconos/curso-autogestionado-color-icon.tsx +202 -0
- package/src/iconos/curso-autogestionado-icon.tsx +48 -0
- package/src/iconos/curso-burbuja-button.tsx +40 -0
- package/src/iconos/curso-burbuja-icon.tsx +96 -0
- package/src/iconos/curso-presencial-color-icon.tsx +255 -0
- package/src/iconos/curso-presencial-icon.tsx +70 -0
- package/src/iconos/curso-virtual-color-icon.tsx +108 -0
- package/src/iconos/curso-virtual-icon.tsx +38 -0
- package/src/iconos/delegaciones-icon.tsx +65 -0
- package/src/iconos/forgot-dni-icon.tsx +41 -0
- package/src/iconos/forgot-password-icon.tsx +45 -0
- package/src/iconos/icon-button-svg.tsx +52 -0
- package/src/iconos/index.ts +42 -0
- package/src/iconos/lapiz-act-contacto-perf-button.tsx +43 -0
- package/src/iconos/styled-icon.tsx +25 -0
- package/src/iconos/user/styled-icon.tsx +24 -0
- package/src/iconos/verificar-sin-verificar-icon.tsx +37 -0
- package/src/iconos/verificar-verificado-icon.tsx +29 -0
- package/src/iconos/whatsapp-icon-button.tsx +40 -0
- package/src/index.ts +2 -1
- package/tsconfig.json +4 -0
- package/dist_browser/CustomBootstrap.js +0 -23
- package/dist_browser/CustomSelectInput.js +0 -23
- package/dist_browser/IntlMessages.js +0 -20
- package/dist_browser/index.js +0 -19
- package/src/constants/defaultValue.ts +0 -2
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { withTheme } from 'styled-components';
|
|
3
|
+
import { Icon } from './styled-icon';
|
|
4
|
+
|
|
5
|
+
const WhatsappIconButton = (props: any) => {
|
|
6
|
+
const { phone = '', width = '', height = '', sublabel = '' } = props || {};
|
|
7
|
+
return (
|
|
8
|
+
<Icon
|
|
9
|
+
width={width}
|
|
10
|
+
height={height}
|
|
11
|
+
display={sublabel !== '' ? 'block' : 'none'}
|
|
12
|
+
onClick={() =>
|
|
13
|
+
window.open(
|
|
14
|
+
`https://api.whatsapp.com/send/?phone=${phone}&text=&app_absent=0`,
|
|
15
|
+
'_blank'
|
|
16
|
+
)
|
|
17
|
+
}
|
|
18
|
+
>
|
|
19
|
+
<svg
|
|
20
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
21
|
+
version="1.1"
|
|
22
|
+
viewBox="0 0 23.687 23.688"
|
|
23
|
+
>
|
|
24
|
+
<path
|
|
25
|
+
fill="#99CC33"
|
|
26
|
+
d="M12.906,3.301c-5.344,0-9.687,4.348-9.687,9.69c0,1.778,0.482,3.509,1.406,5.022l-1.387,4.159
|
|
27
|
+
C3.19,22.311,3.227,22.46,3.33,22.566c0.076,0.073,0.175,0.112,0.275,0.112c0.045,0,0.082-0.003,0.126-0.019l4.154-1.385
|
|
28
|
+
c1.516,0.918,3.246,1.403,5.021,1.403c5.343,0,9.688-4.346,9.688-9.688S18.249,3.301,12.906,3.301z M19.107,16.912
|
|
29
|
+
c0,0.338-0.14,0.671-0.379,0.91l-1.009,0.996c-0.24,0.241-0.565,0.373-0.899,0.373h-0.05c-5.414-0.233-9.833-4.65-10.065-10.061
|
|
30
|
+
C6.691,8.778,6.828,8.428,7.078,8.176l0.995-1.008c0.241-0.238,0.574-0.38,0.915-0.38h0.373c0.531,0,1.015,0.333,1.201,0.834
|
|
31
|
+
l0.883,2.345c0.171,0.457,0.066,0.98-0.271,1.337l-0.364,0.383c-0.168,0.176-0.185,0.444-0.05,0.641
|
|
32
|
+
c0.448,0.65,1.411,1.88,2.814,2.824c0.192,0.129,0.457,0.105,0.628-0.058l0.395-0.372c0.353-0.336,0.876-0.44,1.333-0.271
|
|
33
|
+
l2.345,0.884c0.498,0.188,0.833,0.669,0.833,1.201V16.912z"
|
|
34
|
+
/>
|
|
35
|
+
</svg>
|
|
36
|
+
</Icon>
|
|
37
|
+
);
|
|
38
|
+
};
|
|
39
|
+
WhatsappIconButton.defaultProps = { theme: {} };
|
|
40
|
+
export default withTheme(WhatsappIconButton);
|
package/index.d.ts
CHANGED
|
@@ -7,5 +7,56 @@ declare module "siam-ui-utils" {
|
|
|
7
7
|
export function CustomSelectInput (props: any);
|
|
8
8
|
|
|
9
9
|
//INTL-MESSAGES
|
|
10
|
-
export function
|
|
10
|
+
export function IntlMessages(props: any);
|
|
11
|
+
|
|
12
|
+
//ICONOS
|
|
13
|
+
export function UserIcon(props:any);
|
|
14
|
+
export function AnularAyudaIcon(props: any);
|
|
15
|
+
export function AsesoriaBurbujaButton(props: any);
|
|
16
|
+
export function AsesoriaBurbujaIcon(props: any);
|
|
17
|
+
export function AtencionPresencial(props: any);
|
|
18
|
+
export function AtencionTelefonica(props: any);
|
|
19
|
+
export function AtencionTurnoTelefonico(props: any);
|
|
20
|
+
export function AtencionVirtual(props: any);
|
|
21
|
+
export function BibliotecaBurbujaButton(props: any);
|
|
22
|
+
export function BibliotecaBurbujaIcon(props: any);
|
|
23
|
+
export function CancelarTurnoIcon(props: any);
|
|
24
|
+
export function CodigoVerificacionIcon(props: any);
|
|
25
|
+
export const passwordEyeSvg;
|
|
26
|
+
export const passwordEyeOpenSvg;
|
|
27
|
+
export const contactoBarraSup;
|
|
28
|
+
export const pagosMenuLateral;
|
|
29
|
+
export const delegacionMenuLateral;
|
|
30
|
+
export const delegacionesVerde;
|
|
31
|
+
export const telefonoCeleste;
|
|
32
|
+
export const mailRojo;
|
|
33
|
+
export const whatAppIcon;
|
|
34
|
+
export const telefonoEmergencia;
|
|
35
|
+
export const telefonoConsulta;
|
|
36
|
+
export const telefonoExequial;
|
|
37
|
+
export const telefonoSalud;
|
|
38
|
+
export const descarga;
|
|
39
|
+
export const descargaOver;
|
|
40
|
+
export const anularAyuda;
|
|
41
|
+
export const continuar;
|
|
42
|
+
export const pdfImage;
|
|
43
|
+
export function CursoAutogestionadoColor(props: any);
|
|
44
|
+
export function CursoAutogestionado(props: any);
|
|
45
|
+
export function CursoBurbujaButton(props: any);
|
|
46
|
+
export function CursoBurbujaIcon(props: any);
|
|
47
|
+
export function CursoPresencialColor(props: any);
|
|
48
|
+
export function CursoPresencial(props: any);
|
|
49
|
+
export function CursoVirtualColor(props: any);
|
|
50
|
+
export function CursoVirtual(props: any);
|
|
51
|
+
export function DelegacionesIcon(props: any);
|
|
52
|
+
export function ForgotDniIcon(props: any);
|
|
53
|
+
export function ForgotPasswordIcon(props: any);
|
|
54
|
+
export function IconButtonSvg(props: any);
|
|
55
|
+
export function LapizActContactoPerfilButton(props: any);
|
|
56
|
+
export function Icon(props: any);
|
|
57
|
+
export function VerificarSinVerificarIcon(props: any);
|
|
58
|
+
export function VerificarVerificadoIcon(props: any);
|
|
59
|
+
export function WhatsappIconButton(props: any);
|
|
60
|
+
|
|
11
61
|
}
|
|
62
|
+
|
package/index.ts
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "siam-ui-utils",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.7",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"ampf-react",
|
|
6
6
|
"ampf-utils",
|
|
@@ -19,29 +19,33 @@
|
|
|
19
19
|
},
|
|
20
20
|
"moduleResolution": "nodenext",
|
|
21
21
|
"scripts": {
|
|
22
|
-
"build-node": "npx tsc src/index.ts --jsx reat --outDir dist_node",
|
|
23
22
|
"build-browser": "npx tsc src/index.ts --jsx react --outDir dist_browser",
|
|
24
23
|
"build": "npm run build-node & npm run build-browser",
|
|
24
|
+
"cpToDistBrowser": "copyfiles --all src/**/*.* dist_browser",
|
|
25
25
|
"test": "vitest --clearScreen",
|
|
26
26
|
"test-without-stopping": "vitest --clearScreen --run",
|
|
27
|
-
"publish-npm": "npm run
|
|
27
|
+
"publish-npm": "npm run cpToDistBrowser & npm publish"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@types/react-intl": "^3.0.0",
|
|
31
31
|
"prop-types": "^15.8.1",
|
|
32
32
|
"react": "^18.3.1",
|
|
33
33
|
"react-intl": "^6.6.8",
|
|
34
|
+
"react-router-dom": "^5.2.0",
|
|
34
35
|
"react-select": "^5.8.0",
|
|
35
36
|
"reactstrap": "^9.2.2",
|
|
36
37
|
"siam-utils": "^1.1.4",
|
|
37
38
|
"source-map-loader": "^5.0.0",
|
|
39
|
+
"styled-components": "^6.1.12",
|
|
38
40
|
"typescript": "^5.5.4"
|
|
39
41
|
},
|
|
40
42
|
"devDependencies": {
|
|
41
43
|
"@testing-library/dom": "^10.4.0",
|
|
42
44
|
"@testing-library/jest-dom": "^6.4.8",
|
|
43
45
|
"@testing-library/react": "^16.0.0",
|
|
46
|
+
"@types/react-router-dom": "^5.3.3",
|
|
44
47
|
"@vitejs/plugin-react": "^4.3.1",
|
|
48
|
+
"copyfiles": "^2.4.1",
|
|
45
49
|
"typescript": "^5.2.2",
|
|
46
50
|
"vite": "^5.3.4",
|
|
47
51
|
"vitest": "^2.0.5"
|
package/src/CustomBootstrap.tsx
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import { Col, ColProps } from 'reactstrap';
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { Col } from 'reactstrap';
|
|
4
3
|
|
|
5
|
-
const Colxx = (props:
|
|
4
|
+
const Colxx = (props: any) => (
|
|
6
5
|
<Col {...props} widths={['xxs', 'xs', 'sm', 'md', 'lg', 'xl', 'xxl']} />
|
|
7
6
|
);
|
|
8
7
|
const Separator = ({ className }: { className: string }) => (
|
package/src/IntlMessages.tsx
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import React
|
|
1
|
+
import React from "react";
|
|
2
2
|
import { FormattedMessage, injectIntl } from 'react-intl';
|
|
3
3
|
|
|
4
4
|
const _InjectMassage = (props: any) => <FormattedMessage {...props} />;
|
|
5
5
|
|
|
6
|
-
export const
|
|
6
|
+
export const IntlMessages = injectIntl(_InjectMassage, {
|
|
7
7
|
withRef: false,
|
|
8
8
|
} as any);
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { withTheme } from 'styled-components';
|
|
3
|
+
import { useHistory } from 'react-router-dom';
|
|
4
|
+
import { Icon } from './styled-icon';
|
|
5
|
+
import { tipoServicioEconomico } from '../constants/defaultValues';
|
|
6
|
+
|
|
7
|
+
const AnularAyudaIcon = (props: any) => {
|
|
8
|
+
const { AYUDAS_ECONOMICAS } = tipoServicioEconomico;
|
|
9
|
+
const { sublabel = '', size = '', title } = props || {};
|
|
10
|
+
const sublabeldisplay = sublabel.length > 0 ? 'block' : undefined;
|
|
11
|
+
const {
|
|
12
|
+
codDelegacion,
|
|
13
|
+
nroSolicitud,
|
|
14
|
+
cbuPago,
|
|
15
|
+
fechaVtoTramite,
|
|
16
|
+
netoFinal,
|
|
17
|
+
fechaAcreditacion,
|
|
18
|
+
} = props || {};
|
|
19
|
+
const history = useHistory();
|
|
20
|
+
|
|
21
|
+
return (
|
|
22
|
+
<Icon
|
|
23
|
+
width={size}
|
|
24
|
+
sublabeldisplay={sublabeldisplay}
|
|
25
|
+
title={title}
|
|
26
|
+
onClick={() =>
|
|
27
|
+
history.push('/app/econo/ayudas/desestimiento', {
|
|
28
|
+
codDelegacion: codDelegacion,
|
|
29
|
+
nroSolicitud: nroSolicitud,
|
|
30
|
+
cbuPago: cbuPago,
|
|
31
|
+
fechaVtoTramite: fechaVtoTramite,
|
|
32
|
+
netoFinal: netoFinal,
|
|
33
|
+
fechaAcreditacion: fechaAcreditacion,
|
|
34
|
+
tipoServicio: AYUDAS_ECONOMICAS,
|
|
35
|
+
})
|
|
36
|
+
}
|
|
37
|
+
>
|
|
38
|
+
<svg
|
|
39
|
+
version="1.1"
|
|
40
|
+
baseProfile="basic"
|
|
41
|
+
id="Capa_1"
|
|
42
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
43
|
+
x="0px"
|
|
44
|
+
y="0px"
|
|
45
|
+
width="18.415px"
|
|
46
|
+
height="17.471px"
|
|
47
|
+
viewBox="0 0 18.415 17.471"
|
|
48
|
+
>
|
|
49
|
+
<g>
|
|
50
|
+
<path
|
|
51
|
+
fill="#CECECE"
|
|
52
|
+
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
|
|
53
|
+
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
|
|
54
|
+
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
|
|
55
|
+
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
|
|
56
|
+
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
|
|
57
|
+
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
|
|
58
|
+
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"
|
|
59
|
+
/>
|
|
60
|
+
<path
|
|
61
|
+
fill="#CECECE"
|
|
62
|
+
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
|
|
63
|
+
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
|
|
64
|
+
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"
|
|
65
|
+
/>
|
|
66
|
+
</g>
|
|
67
|
+
</svg>
|
|
68
|
+
</Icon>
|
|
69
|
+
);
|
|
70
|
+
};
|
|
71
|
+
AnularAyudaIcon.defaultProps = { theme: {} };
|
|
72
|
+
export default withTheme(AnularAyudaIcon);
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { withTheme } from 'styled-components';
|
|
3
|
+
import { Icon } from './styled-icon';
|
|
4
|
+
|
|
5
|
+
const AsesoriaBurbujaButton = (props: any) => {
|
|
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
|
+
export default withTheme(AsesoriaBurbujaButton);
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { withTheme } from 'styled-components';
|
|
3
|
+
import { Icon } from './styled-icon';
|
|
4
|
+
|
|
5
|
+
const AsesoriaBurbujaIcon = (props: any) => {
|
|
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
|
+
export default withTheme(AsesoriaBurbujaIcon);
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { withTheme } from 'styled-components';
|
|
3
|
+
import { Icon } from './styled-icon';
|
|
4
|
+
|
|
5
|
+
const AtencionPresencial = (props: any) => {
|
|
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
|
+
export default withTheme(AtencionPresencial);
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { withTheme } from 'styled-components';
|
|
3
|
+
import { Icon } from './styled-icon';
|
|
4
|
+
|
|
5
|
+
const AtencionTelefonica = (props: any) => {
|
|
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
|
+
export default withTheme(AtencionTelefonica);
|