@taiga-ui/icons 2.22.0 → 2.26.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -3
- package/all.d.ts +180 -178
- package/bundles/taiga-ui-icons-scripts.umd.js +368 -0
- package/bundles/taiga-ui-icons-scripts.umd.js.map +1 -0
- package/bundles/taiga-ui-icons-scripts.umd.min.js +2 -0
- package/bundles/taiga-ui-icons-scripts.umd.min.js.map +1 -0
- package/bundles/taiga-ui-icons.umd.js +181 -177
- package/bundles/taiga-ui-icons.umd.js.map +1 -1
- package/bundles/taiga-ui-icons.umd.min.js +1 -1
- package/bundles/taiga-ui-icons.umd.min.js.map +1 -1
- package/esm2015/all.js +181 -179
- package/esm2015/scripts/convert-all-compile-file-to-all-file.js +48 -0
- package/esm2015/scripts/delete-all-to-compile-file.js +10 -0
- package/esm2015/scripts/index.js +6 -0
- package/esm2015/scripts/post-prettier-format.js +9 -0
- package/esm2015/scripts/prepare-all-to-compile-file.js +13 -0
- package/esm2015/scripts/rollup-svgo.js +32 -0
- package/esm2015/scripts/taiga-ui-icons-scripts.js +5 -0
- package/esm5/all.js +181 -179
- package/esm5/scripts/convert-all-compile-file-to-all-file.js +54 -0
- package/esm5/scripts/delete-all-to-compile-file.js +10 -0
- package/esm5/scripts/index.js +6 -0
- package/esm5/scripts/post-prettier-format.js +10 -0
- package/esm5/scripts/prepare-all-to-compile-file.js +25 -0
- package/esm5/scripts/rollup-svgo.js +44 -0
- package/esm5/scripts/taiga-ui-icons-scripts.js +5 -0
- package/fesm2015/taiga-ui-icons-scripts.js +115 -0
- package/fesm2015/taiga-ui-icons-scripts.js.map +1 -0
- package/fesm2015/taiga-ui-icons.js +180 -178
- package/fesm2015/taiga-ui-icons.js.map +1 -1
- package/fesm5/taiga-ui-icons-scripts.js +144 -0
- package/fesm5/taiga-ui-icons-scripts.js.map +1 -0
- package/fesm5/taiga-ui-icons.js +180 -178
- package/fesm5/taiga-ui-icons.js.map +1 -1
- package/package.json +1 -1
- package/scripts/convert-all-compile-file-to-all-file.d.ts +8 -0
- package/scripts/delete-all-to-compile-file.d.ts +1 -0
- package/scripts/index.d.ts +5 -0
- package/scripts/package.json +13 -0
- package/scripts/post-prettier-format.d.ts +1 -0
- package/scripts/prepare-all-to-compile-file.d.ts +1 -0
- package/scripts/rollup-svgo.d.ts +8 -0
- package/scripts/taiga-ui-icons-scripts.d.ts +4 -0
- package/scripts/taiga-ui-icons-scripts.metadata.json +1 -0
- package/src/tuiIconBellOffLarge.svg +5 -5
- package/src/tuiIconClose.svg +14 -0
- package/src/tuiIconCode.svg +2 -2
- package/src/tuiIconCodeLarge.svg +2 -2
- package/src/tuiIconElectron.svg +6 -6
- package/src/tuiIconMaestro.svg +3 -3
- package/src/tuiIconMastercard.svg +3 -3
- package/src/tuiIconMir.svg +7 -7
- package/src/tuiIconRotate.svg +29 -0
- package/src/tuiIconVisa.svg +5 -5
- package/taiga-ui-icons.metadata.json +1 -1
package/package.json
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function deleteAllToCompileFile(allToCompilePath: string | string[]): void;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"main": "../bundles/taiga-ui-icons-scripts.umd.js",
|
|
3
|
+
"module": "../fesm5/taiga-ui-icons-scripts.js",
|
|
4
|
+
"es2015": "../fesm2015/taiga-ui-icons-scripts.js",
|
|
5
|
+
"esm5": "../esm5/scripts/taiga-ui-icons-scripts.js",
|
|
6
|
+
"esm2015": "../esm2015/scripts/taiga-ui-icons-scripts.js",
|
|
7
|
+
"fesm5": "../fesm5/taiga-ui-icons-scripts.js",
|
|
8
|
+
"fesm2015": "../fesm2015/taiga-ui-icons-scripts.js",
|
|
9
|
+
"typings": "taiga-ui-icons-scripts.d.ts",
|
|
10
|
+
"metadata": "taiga-ui-icons-scripts.metadata.json",
|
|
11
|
+
"sideEffects": false,
|
|
12
|
+
"name": "@taiga-ui/icons/scripts"
|
|
13
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function postPrettierFormat(filePath: string, prettierConfig?: string): void;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function prepareAllToCompileFile(iconsSrc: string, allToCompilePath: string): void;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Plugin } from 'rollup';
|
|
2
|
+
import { OptimizeOptions } from 'svgo';
|
|
3
|
+
export interface RollupSvgoConfig {
|
|
4
|
+
readonly include?: string;
|
|
5
|
+
readonly exclude?: string;
|
|
6
|
+
readonly options?: OptimizeOptions;
|
|
7
|
+
}
|
|
8
|
+
export declare function rollupSvgo({ include, exclude, options, }?: RollupSvgoConfig): Plugin;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"__symbolic":"module","version":4,"metadata":{"convertAllCompileFileToAllFile":{"__symbolic":"function"},"deleteAllToCompileFile":{"__symbolic":"function"},"postPrettierFormat":{"__symbolic":"function"},"prepareAllToCompileFile":{"__symbolic":"function"},"RollupSvgoConfig":{"__symbolic":"interface"},"rollupSvgo":{"__symbolic":"function"}},"origins":{"convertAllCompileFileToAllFile":"./convert-all-compile-file-to-all-file","deleteAllToCompileFile":"./delete-all-to-compile-file","postPrettierFormat":"./post-prettier-format","prepareAllToCompileFile":"./prepare-all-to-compile-file","RollupSvgoConfig":"./rollup-svgo","rollupSvgo":"./rollup-svgo"},"importAs":"@taiga-ui/icons/scripts"}
|
|
@@ -16,11 +16,11 @@
|
|
|
16
16
|
class="feather feather-bell-off"
|
|
17
17
|
>
|
|
18
18
|
<svg x="-12" y="-12">
|
|
19
|
-
<path d="M13.73 21a2 2 0 0 1-3.46 0"
|
|
20
|
-
<path d="M18.63 13A17.89 17.89 0 0 1 18 8"
|
|
21
|
-
<path d="M6.26 6.26A5.86 5.86 0 0 0 6 8c0 7-3 9-3 9h14"
|
|
22
|
-
<path d="M18 8a6 6 0 0 0-9.33-5"
|
|
23
|
-
<line x1="1" y1="1" x2="23" y2="23"
|
|
19
|
+
<path d="M13.73 21a2 2 0 0 1-3.46 0" />
|
|
20
|
+
<path d="M18.63 13A17.89 17.89 0 0 1 18 8" />
|
|
21
|
+
<path d="M6.26 6.26A5.86 5.86 0 0 0 6 8c0 7-3 9-3 9h14" />
|
|
22
|
+
<path d="M18 8a6 6 0 0 0-9.33-5" />
|
|
23
|
+
<line x1="1" y1="1" x2="23" y2="23" />
|
|
24
24
|
</svg>
|
|
25
25
|
</svg>
|
|
26
26
|
</g>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" focusable="false">
|
|
2
|
+
<g id="tuiIconClose" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<svg x="50%" y="50%" width="1em" height="1em" overflow="visible" viewBox="0 0 24 24" fill="none">
|
|
4
|
+
<svg x="-12" y="-12" xmlns="http://www.w3.org/2000/svg">
|
|
5
|
+
<path
|
|
6
|
+
fill-rule="evenodd"
|
|
7
|
+
clip-rule="evenodd"
|
|
8
|
+
d="M8.707 7.293a1 1 0 0 0-1.414 1.414L10.586 12l-3.293 3.293a1 1 0 1 0 1.414 1.414L12 13.414l3.293 3.293a1 1 0 0 0 1.414-1.414L13.414 12l3.293-3.293a1 1 0 0 0-1.414-1.414L12 10.586 8.707 7.293z"
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
/>
|
|
11
|
+
</svg>
|
|
12
|
+
</svg>
|
|
13
|
+
</g>
|
|
14
|
+
</svg>
|
package/src/tuiIconCode.svg
CHANGED
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
stroke-linejoin="round"
|
|
16
16
|
>
|
|
17
17
|
<svg x="-12" y="-12">
|
|
18
|
-
<polyline points="16 18 22 12 16 6"
|
|
19
|
-
<polyline points="8 6 2 12 8 18"
|
|
18
|
+
<polyline points="16 18 22 12 16 6" />
|
|
19
|
+
<polyline points="8 6 2 12 8 18" />
|
|
20
20
|
</svg>
|
|
21
21
|
</svg>
|
|
22
22
|
</g>
|
package/src/tuiIconCodeLarge.svg
CHANGED
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
stroke-linejoin="round"
|
|
15
15
|
>
|
|
16
16
|
<svg x="-12" y="-12">
|
|
17
|
-
<polyline points="16 18 22 12 16 6"
|
|
18
|
-
<polyline points="8 6 2 12 8 18"
|
|
17
|
+
<polyline points="16 18 22 12 16 6" />
|
|
18
|
+
<polyline points="8 6 2 12 8 18" />
|
|
19
19
|
</svg>
|
|
20
20
|
</svg>
|
|
21
21
|
</g>
|
package/src/tuiIconElectron.svg
CHANGED
|
@@ -15,28 +15,28 @@
|
|
|
15
15
|
<polygon
|
|
16
16
|
fill="#1a1f71"
|
|
17
17
|
points="11.2571152 9.30231418 12.8746182 0.158896552 15.4617212 0.158896552 13.843103 9.30231418"
|
|
18
|
-
|
|
18
|
+
/>
|
|
19
19
|
<path
|
|
20
20
|
d="M23.2261818,0.384023353 C22.7136,0.198784163 21.910497,0 20.9074909,0 C18.3511758,0 16.5504485,1.24011239 16.5351273,3.01744645 C16.5207273,4.33126218 17.8206545,5.06418537 18.8019879,5.50154789 C19.8089697,5.94969969 20.1475394,6.23554534 20.1427394,6.63572925 C20.1363394,7.24861595 19.3385697,7.52862324 18.5949576,7.52862324 C17.5594667,7.52862324 17.0093576,7.39004415 16.1597576,7.04866411 L15.8263758,6.90331253 L15.4632727,8.95019157 C16.0675394,9.20539756 17.1849212,9.42655428 18.3451152,9.43799745 C21.0645818,9.43799745 22.8300121,8.21208393 22.8500848,6.31415289 C22.8598303,5.27403904 22.1705697,4.48245211 20.6780121,3.82991133 C19.7737212,3.4069345 19.2199273,3.12468528 19.2257939,2.69638387 C19.2257939,2.3163306 19.6945455,1.90993468 20.7073455,1.90993468 C21.5533576,1.89727714 22.1661576,2.07499653 22.6436364,2.26023572 L22.8754909,2.3657464 L23.2261818,0.384023353"
|
|
21
21
|
fill="#1a1f71"
|
|
22
|
-
|
|
22
|
+
/>
|
|
23
23
|
<path
|
|
24
24
|
d="M29.8602182,0.167630724 L27.8611394,0.167630724 C27.2418424,0.167630724 26.7784242,0.330450648 26.5064242,0.925869002 L22.6642424,9.30521 L25.380897,9.30521 C25.380897,9.30521 25.8251152,8.17854844 25.9255758,7.9311892 C26.2224485,7.9311892 28.8615273,7.93511257 29.2388364,7.93511257 C29.3162182,8.25519431 29.5536,9.30521 29.5536,9.30521 L31.9541818,9.30521 L29.8602182,0.167630724 Z M26.6700606,6.06100201 C26.8840242,5.53419595 27.7008,3.5050655 27.7008,3.5050655 C27.6855273,3.52939974 27.9131636,2.97569057 28.0438303,2.63239555 L28.2187152,3.42071301 C28.2187152,3.42071301 28.7140848,5.60327531 28.8176,6.0609553 L26.6700606,6.0609553 L26.6700606,6.06100201 Z"
|
|
25
25
|
fill="#1a1f71"
|
|
26
|
-
|
|
26
|
+
/>
|
|
27
27
|
<path
|
|
28
28
|
d="M9.08727273,0.165575625 L6.55442424,6.4007006 L6.28455758,5.13359168 C5.81304242,3.67288305 4.34395152,2.09036307 2.70157576,1.29807553 L5.01755152,9.29442073 L7.75476364,9.29138478 L11.8276848,0.165575625 L9.08727273,0.165575625"
|
|
29
29
|
fill="#1a1f71"
|
|
30
|
-
|
|
30
|
+
/>
|
|
31
31
|
<path
|
|
32
32
|
d="M4.20470303,0.159924101 L0.0330181818,0.159924101 L0,0.35016092 C3.24552727,1.10699799 5.39306667,2.93598978 6.28450909,5.13359168 L5.37740606,0.931847473 C5.2208,0.352869914 4.76659394,0.180101441 4.20470303,0.159924101"
|
|
33
33
|
fill="#1a1f71"
|
|
34
|
-
|
|
34
|
+
/>
|
|
35
35
|
</g>
|
|
36
36
|
<g transform="translate(9, 24)" fill="#1a1f71">
|
|
37
37
|
<path
|
|
38
38
|
d="M2.85521183,2.39259344 L1.20764767,2.39259344 L1.20764767,3.85941662 L3.05066394,3.85941662 L3.05066394,4.30044437 L0.652371739,4.30044437 L0.652371739,0.230975125 L2.95614197,0.230975125 L2.95614197,0.672002875 L1.20764767,0.672002875 L1.20764767,1.95769525 L2.85521183,1.95769525 L2.85521183,2.39259344 Z M3.90184108,0.01386325 L4.4571172,0.01386325 L4.4571172,4.30032175 L3.90184108,4.30032175 L3.90184108,0.01386325 Z M5.85786699,2.93577156 C5.87036305,3.654472 6.34393377,3.95022719 6.90529738,3.95022719 C7.30325057,3.95022719 7.5493279,3.88372056 7.75150848,3.799438 L7.85243863,4.17978231 C7.65666622,4.26406488 7.31606713,4.3667365 6.82968005,4.3667365 C5.88958798,4.3667365 5.32790387,3.76909638 5.32790387,2.88765381 C5.32790387,2.00621125 5.87036305,1.31785263 6.7604707,1.31785263 C7.76400454,1.31785263 8.02289842,2.15117744 8.02289842,2.6884405 C8.02289842,2.79693513 8.01649024,2.8753945 8.00367369,2.93577156 L5.85786699,2.93577156 Z M7.48620642,2.55542725 C7.4926146,2.22350725 7.34105924,1.69819684 6.71625365,1.69819684 C6.14816136,1.69819684 5.90817191,2.18734225 5.86395487,2.55542725 L7.48620642,2.55542725 Z M11.0448424,4.19768087 C10.8996952,4.2641875 10.5776801,4.36685894 10.1675513,4.36685894 C9.24604339,4.36685894 8.64655041,3.769219 8.64655041,2.87551712 C8.64655041,1.97599225 9.28993993,1.31797516 10.2873859,1.31797516 C10.6154889,1.31797516 10.9057831,1.39612816 11.0573387,1.474894 L10.9314162,1.87945037 C10.7984448,1.81294375 10.5901763,1.74030747 10.2873859,1.74030747 C9.58664248,1.74030747 9.20823472,2.24140562 9.20823472,2.84548187 C9.20823472,3.52158137 9.66258051,3.9380905 10.2684815,3.9380905 C10.5840884,3.9380905 10.7923571,3.86576087 10.9500002,3.79925425 L11.0448424,4.19768087 Z M12.6027871,0.677917937 L12.6027871,1.37822959 L13.397732,1.37822959 L13.397732,1.7824795 L12.6027871,1.7824795 L12.6027871,3.35841025 C12.6027871,3.72097881 12.7101257,3.92601512 13.0193243,3.92601512 C13.1705591,3.92601512 13.2593137,3.91406237 13.3413394,3.88954375 L13.366652,4.29440669 C13.2593137,4.3305715 13.0888539,4.3667365 12.8741771,4.3667365 C12.6152832,4.3667365 12.4070147,4.28214737 12.2746841,4.1436175 C12.1231287,3.98026262 12.0600075,3.72097881 12.0600075,3.37679931 L12.0600075,1.7824795 L11.5864367,1.7824795 L11.5864367,1.37822959 L12.0600075,1.37822959 L12.0600075,0.834836781 L12.6027871,0.677917937 Z M14.1735804,2.28995238 C14.1735804,1.94577306 14.1668517,1.65001788 14.1482678,1.37816828 L14.6343343,1.37816828 L14.659647,1.957726 L14.6782311,1.957726 C14.8172902,1.56542884 15.1578895,1.31779131 15.5302094,1.31779131 C15.587243,1.31779131 15.63146,1.32392097 15.6820852,1.32974406 L15.6820852,1.83114888 C15.6250516,1.81888956 15.568659,1.81888956 15.4924007,1.81888956 C15.1014967,1.81888956 14.8233781,2.09656225 14.7477605,2.49529544 C14.7352645,2.56762525 14.7288563,2.65803738 14.7288563,2.74293306 L14.7288563,4.30047513 L14.1735804,4.30047513 L14.1735804,2.28995238 Z M19.0958624,2.8151095 C19.0958624,3.89576537 18.3066849,4.36682837 17.574541,4.36682837 C16.7539632,4.36682837 16.1105737,3.78696437 16.1105737,2.86353362 C16.1105737,1.89137256 16.785684,1.3179445 17.6251664,1.3179445 C18.5024573,1.3179445 19.0958624,1.92753737 19.0958624,2.8151095 Z M16.6783457,2.84545131 C16.6783457,3.485386 17.0570739,3.96840156 17.5998536,3.96840156 C18.1301374,3.96840156 18.5274498,3.49120919 18.5274498,2.833192 C18.5274498,2.3382235 18.2688762,1.71606475 17.6123498,1.71606475 C16.9625521,1.71606475 16.6783457,2.29592894 16.6783457,2.84545131 Z M19.9469439,2.16901469 C19.9469439,1.86130675 19.940215,1.61979878 19.9216313,1.37829081 L20.4137855,1.37829081 L20.4455065,1.86130675 L20.4580026,1.86130675 C20.6095581,1.58945706 20.9629738,1.31791384 21.4679448,1.31791384 C21.8905696,1.31791384 22.5470962,1.55942181 22.5470962,2.56131175 L22.5470962,4.30029119 L21.9918202,4.30029119 L21.9918202,2.61586563 C21.9918202,2.14510919 21.8088644,1.75250556 21.2849889,1.75250556 C20.9251651,1.75250556 20.6409586,2.000143 20.5403488,2.29589838 C20.5147159,2.362405 20.5022196,2.45281713 20.5022196,2.54353581 L20.5022196,4.30029119 L19.9469439,4.30029119 L19.9469439,2.16901469 Z"
|
|
39
|
-
|
|
39
|
+
/>
|
|
40
40
|
</g>
|
|
41
41
|
</svg>
|
|
42
42
|
</svg>
|
package/src/tuiIconMaestro.svg
CHANGED
|
@@ -14,15 +14,15 @@
|
|
|
14
14
|
<path
|
|
15
15
|
d="M13.3333333,15.6337509 C15.5666403,14.1388225 17.037037,11.5929779 17.037037,8.7037037 C17.037037,5.81442953 15.5666403,3.26858493 13.3333333,1.77365652 C14.6574982,0.887288573 16.2498642,0.37037037 17.962963,0.37037037 C22.5653359,0.37037037 26.2962963,4.10133079 26.2962963,8.7037037 C26.2962963,13.3060766 22.5653359,17.037037 17.962963,17.037037 C16.2498642,17.037037 14.6574982,16.5201188 13.3333333,15.6337509 Z"
|
|
16
16
|
fill="#0AADFC"
|
|
17
|
-
|
|
17
|
+
/>
|
|
18
18
|
<path
|
|
19
19
|
d="M13.3333333,1.77365652 C11.1000264,3.26858493 9.62962963,5.81442953 9.62962963,8.7037037 C9.62962963,11.5929779 11.1000264,14.1388225 13.3333333,15.6337509 C12.0091685,16.5201188 10.4168024,17.037037 8.7037037,17.037037 C4.10133079,17.037037 0.37037037,13.3060766 0.37037037,8.7037037 C0.37037037,4.10133079 4.10133079,0.37037037 8.7037037,0.37037037 C10.4168024,0.37037037 12.0091685,0.887288573 13.3333333,1.77365652 Z"
|
|
20
20
|
fill="#F03727"
|
|
21
|
-
|
|
21
|
+
/>
|
|
22
22
|
<path
|
|
23
23
|
d="M13.3333333,1.77365652 C15.5666403,3.26858493 17.037037,5.81442953 17.037037,8.7037037 C17.037037,11.5929779 15.5666403,14.1388225 13.3333333,15.6337509 C11.1000264,14.1388225 9.62962963,11.5929779 9.62962963,8.7037037 C9.62962963,5.81442953 11.1000264,3.26858493 13.3333333,1.77365652 Z"
|
|
24
24
|
fill="#726ECC"
|
|
25
|
-
|
|
25
|
+
/>
|
|
26
26
|
</g>
|
|
27
27
|
</svg>
|
|
28
28
|
</svg>
|
|
@@ -15,15 +15,15 @@
|
|
|
15
15
|
<path
|
|
16
16
|
d="M12.8333333,14.9858645 C15.0443072,13.5181166 16.5,11.0185601 16.5,8.18181818 C16.5,5.34507627 15.0443072,2.84551975 12.8333333,1.37777185 C14.1442565,0.50751969 15.7206989,0 17.4166667,0 C21.9730159,0 25.6666667,3.66312477 25.6666667,8.18181818 C25.6666667,12.7005116 21.9730159,16.3636364 17.4166667,16.3636364 C15.7206989,16.3636364 14.1442565,15.8561167 12.8333333,14.9858645 Z"
|
|
17
17
|
fill="#FBB735"
|
|
18
|
-
|
|
18
|
+
/>
|
|
19
19
|
<path
|
|
20
20
|
d="M12.8333333,1.37777185 C10.6223595,2.84551975 9.16666667,5.34507627 9.16666667,8.18181818 C9.16666667,11.0185601 10.6223595,13.5181166 12.8333333,14.9858645 C11.5224101,15.8561167 9.94596776,16.3636364 8.25,16.3636364 C3.69365081,16.3636364 0,12.7005116 0,8.18181818 C0,3.66312477 3.69365081,0 8.25,0 C9.94596776,0 11.5224101,0.50751969 12.8333333,1.37777185 Z"
|
|
21
21
|
fill="#F03727"
|
|
22
|
-
|
|
22
|
+
/>
|
|
23
23
|
<path
|
|
24
24
|
d="M12.8333333,1.37777185 C15.0443072,2.84551975 16.5,5.34507627 16.5,8.18181818 C16.5,11.0185601 15.0443072,13.5181166 12.8333333,14.9858645 C10.6223595,13.5181166 9.16666667,11.0185601 9.16666667,8.18181818 C9.16666667,5.34507627 10.6223595,2.84551975 12.8333333,1.37777185 Z"
|
|
25
25
|
fill="#F6772D"
|
|
26
|
-
|
|
26
|
+
/>
|
|
27
27
|
</g>
|
|
28
28
|
</svg>
|
|
29
29
|
</svg>
|
package/src/tuiIconMir.svg
CHANGED
|
@@ -12,28 +12,28 @@
|
|
|
12
12
|
>
|
|
13
13
|
<svg x="-16" y="-16">
|
|
14
14
|
<defs>
|
|
15
|
-
<linearGradient x1="-0.18041958%" y1="50%" x2="100%" y2="50%"
|
|
16
|
-
<stop stop-color="#00B4E6" offset="0%"
|
|
17
|
-
<stop stop-color="#088CCB" offset="100%"
|
|
15
|
+
<linearGradient id="tui-mir-gradient" x1="-0.18041958%" y1="50%" x2="100%" y2="50%">
|
|
16
|
+
<stop stop-color="#00B4E6" offset="0%" />
|
|
17
|
+
<stop stop-color="#088CCB" offset="100%" />
|
|
18
18
|
</linearGradient>
|
|
19
19
|
</defs>
|
|
20
20
|
<g transform="translate(0, 12)">
|
|
21
21
|
<path
|
|
22
22
|
d="M28.4081633,0 L22.3346939,0 C22.6612245,2.0244898 24.6204082,3.91836735 26.7755102,3.91836735 L31.6081633,3.91836735 C31.6734694,3.72244898 31.6734694,3.46122449 31.6734694,3.26530612 C31.6734694,1.43673469 30.2367347,0 28.4081633,0 Z"
|
|
23
23
|
fill="url(#tui-mir-gradient) #049fd8"
|
|
24
|
-
|
|
24
|
+
/>
|
|
25
25
|
<path
|
|
26
26
|
d="M22.8571429,4.24489796 L22.8571429,9.14285714 L25.7959184,9.14285714 L25.7959184,6.53061224 L28.4081633,6.53061224 C29.844898,6.53061224 31.0857143,5.55102041 31.477551,4.24489796 L22.8571429,4.24489796 Z"
|
|
27
27
|
fill="#4DB45F"
|
|
28
|
-
|
|
28
|
+
/>
|
|
29
29
|
<path
|
|
30
30
|
d="M12.4081633,0 L12.4081633,9.14285714 L15.0204082,9.14285714 C15.0204082,9.14285714 15.6734694,9.14285714 16,8.48979592 C17.7632653,4.96326531 18.2857143,3.91836735 18.2857143,3.91836735 L18.6122449,3.91836735 L18.6122449,9.14285714 L21.5510204,9.14285714 L21.5510204,0 L18.9387755,0 C18.9387755,0 18.2857143,0.0653061224 17.9591837,0.653061224 C16.4571429,3.65714286 15.6734694,5.2244898 15.6734694,5.2244898 L15.3469388,5.2244898 L15.3469388,0 L12.4081633,0 Z"
|
|
31
31
|
fill="#4DB45F"
|
|
32
|
-
|
|
32
|
+
/>
|
|
33
33
|
<path
|
|
34
34
|
d="M0,9.14285714 L0,0 L2.93877551,0 C2.93877551,0 3.7877551,0 4.24489796,1.30612245 C5.42040816,4.76734694 5.55102041,5.2244898 5.55102041,5.2244898 C5.55102041,5.2244898 5.8122449,4.3755102 6.85714286,1.30612245 C7.31428571,0 8.16326531,0 8.16326531,0 L11.1020408,0 L11.1020408,9.14285714 L8.16326531,9.14285714 L8.16326531,4.24489796 L7.83673469,4.24489796 L6.20408163,9.14285714 L4.89795918,9.14285714 L3.26530612,4.24489796 L2.93877551,4.24489796 L2.93877551,9.14285714 L0,9.14285714 Z"
|
|
35
35
|
fill="#4DB45F"
|
|
36
|
-
|
|
36
|
+
/>
|
|
37
37
|
</g>
|
|
38
38
|
</svg>
|
|
39
39
|
</svg>
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em">
|
|
2
|
+
<g id="tuiIconRotate" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<svg
|
|
4
|
+
x="50%"
|
|
5
|
+
y="50%"
|
|
6
|
+
width="1em"
|
|
7
|
+
height="1em"
|
|
8
|
+
overflow="visible"
|
|
9
|
+
viewBox="0 0 16 16"
|
|
10
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
11
|
+
>
|
|
12
|
+
<svg x="-8" y="-8">
|
|
13
|
+
<g clip-path="url(#clip0_29215:435606)">
|
|
14
|
+
<path
|
|
15
|
+
fill-rule="evenodd"
|
|
16
|
+
clip-rule="evenodd"
|
|
17
|
+
d="M14.0357 9C13.5031 9 13.0714 8.56245 13.0714 8.0227V5.62343C13.0714 5.21727 12.9151 4.83143 12.6415 4.54875L12.6405 4.54777C12.508 4.41052 12.3498 4.30142 12.1752 4.22685C12.0008 4.15237 11.8135 4.11384 11.6242 4.11351H9.29239L9.69624 4.60025C10.0728 4.98191 10.0728 5.6007 9.69624 5.98236C9.31965 6.36401 8.70907 6.36401 8.33248 5.98236L6.28244 3.82727C5.90585 3.44561 5.90585 2.82682 6.28244 2.44516L8.33248 0.286244C8.70907 -0.0954148 9.31965 -0.0954148 9.69624 0.286245C10.0728 0.667903 10.0728 1.28669 9.69624 1.66835L9.2924 2.15891L11.6261 2.15891C12.072 2.1595 12.5133 2.25018 12.9241 2.42564C13.3348 2.60102 13.7069 2.85758 14.0186 3.18033C14.6492 3.8319 15 4.71047 15 5.62343V8.0227C15 8.56245 14.5683 9 14.0357 9ZM4 9H9V13H4L4 9ZM2 9C2 7.89543 2.89543 7 4 7H9C10.1046 7 11 7.89543 11 9V13C11 14.1046 10.1046 15 9 15H4C2.89543 15 2 14.1046 2 13V9Z"
|
|
18
|
+
fill="currentColor"
|
|
19
|
+
/>
|
|
20
|
+
</g>
|
|
21
|
+
<defs>
|
|
22
|
+
<clipPath id="clip0_29215:435606">
|
|
23
|
+
<rect width="16" height="16" fill="white" transform="translate(0 0.00195312)" />
|
|
24
|
+
</clipPath>
|
|
25
|
+
</defs>
|
|
26
|
+
</svg>
|
|
27
|
+
</svg>
|
|
28
|
+
</g>
|
|
29
|
+
</svg>
|
package/src/tuiIconVisa.svg
CHANGED
|
@@ -15,23 +15,23 @@
|
|
|
15
15
|
<polygon
|
|
16
16
|
fill="#1a1f71"
|
|
17
17
|
points="11.2571152 9.30231418 12.8746182 0.158896552 15.4617212 0.158896552 13.843103 9.30231418"
|
|
18
|
-
|
|
18
|
+
/>
|
|
19
19
|
<path
|
|
20
20
|
d="M23.2261818,0.384023353 C22.7136,0.198784163 21.910497,0 20.9074909,0 C18.3511758,0 16.5504485,1.24011239 16.5351273,3.01744645 C16.5207273,4.33126218 17.8206545,5.06418537 18.8019879,5.50154789 C19.8089697,5.94969969 20.1475394,6.23554534 20.1427394,6.63572925 C20.1363394,7.24861595 19.3385697,7.52862324 18.5949576,7.52862324 C17.5594667,7.52862324 17.0093576,7.39004415 16.1597576,7.04866411 L15.8263758,6.90331253 L15.4632727,8.95019157 C16.0675394,9.20539756 17.1849212,9.42655428 18.3451152,9.43799745 C21.0645818,9.43799745 22.8300121,8.21208393 22.8500848,6.31415289 C22.8598303,5.27403904 22.1705697,4.48245211 20.6780121,3.82991133 C19.7737212,3.4069345 19.2199273,3.12468528 19.2257939,2.69638387 C19.2257939,2.3163306 19.6945455,1.90993468 20.7073455,1.90993468 C21.5533576,1.89727714 22.1661576,2.07499653 22.6436364,2.26023572 L22.8754909,2.3657464 L23.2261818,0.384023353"
|
|
21
21
|
fill="#1a1f71"
|
|
22
|
-
|
|
22
|
+
/>
|
|
23
23
|
<path
|
|
24
24
|
d="M29.8602182,0.167630724 L27.8611394,0.167630724 C27.2418424,0.167630724 26.7784242,0.330450648 26.5064242,0.925869002 L22.6642424,9.30521 L25.380897,9.30521 C25.380897,9.30521 25.8251152,8.17854844 25.9255758,7.9311892 C26.2224485,7.9311892 28.8615273,7.93511257 29.2388364,7.93511257 C29.3162182,8.25519431 29.5536,9.30521 29.5536,9.30521 L31.9541818,9.30521 L29.8602182,0.167630724 Z M26.6700606,6.06100201 C26.8840242,5.53419595 27.7008,3.5050655 27.7008,3.5050655 C27.6855273,3.52939974 27.9131636,2.97569057 28.0438303,2.63239555 L28.2187152,3.42071301 C28.2187152,3.42071301 28.7140848,5.60327531 28.8176,6.0609553 L26.6700606,6.0609553 L26.6700606,6.06100201 Z"
|
|
25
25
|
fill="#1a1f71"
|
|
26
|
-
|
|
26
|
+
/>
|
|
27
27
|
<path
|
|
28
28
|
d="M9.08727273,0.165575625 L6.55442424,6.4007006 L6.28455758,5.13359168 C5.81304242,3.67288305 4.34395152,2.09036307 2.70157576,1.29807553 L5.01755152,9.29442073 L7.75476364,9.29138478 L11.8276848,0.165575625 L9.08727273,0.165575625"
|
|
29
29
|
fill="#1a1f71"
|
|
30
|
-
|
|
30
|
+
/>
|
|
31
31
|
<path
|
|
32
32
|
d="M4.20470303,0.159924101 L0.0330181818,0.159924101 L0,0.35016092 C3.24552727,1.10699799 5.39306667,2.93598978 6.28450909,5.13359168 L5.37740606,0.931847473 C5.2208,0.352869914 4.76659394,0.180101441 4.20470303,0.159924101"
|
|
33
33
|
fill="#1a1f71"
|
|
34
|
-
|
|
34
|
+
/>
|
|
35
35
|
</g>
|
|
36
36
|
</svg>
|
|
37
37
|
</svg>
|