@citizenplane/pimp 9.13.1 → 9.13.2
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/dist/pimp.es.js +1231 -1215
- package/dist/pimp.umd.js +18 -18
- package/package.json +1 -1
- package/src/components/icons/IconCitizenPlane.vue +18 -0
- package/src/constants/CpCustomIcons.ts +2 -0
package/package.json
CHANGED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg
|
|
3
|
+
clip-rule="evenodd"
|
|
4
|
+
fill="currentColor"
|
|
5
|
+
fill-rule="evenodd"
|
|
6
|
+
height="24"
|
|
7
|
+
viewBox="0 0 24 24"
|
|
8
|
+
width="24"
|
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
+
>
|
|
11
|
+
<path
|
|
12
|
+
d="M8.00273 8.43774C4.78059 8.43774 2.15936 11.0625 2.15936 14.2884C2.15936 17.5143 4.78059 20.139 8.00273 20.139C8.42378 20.139 8.83447 20.0937 9.23037 20.0086V18.9803V16.8583V16.3808V15.6673C8.90398 15.959 8.47366 16.1369 8.00273 16.1369C6.98473 16.1369 6.15653 15.3076 6.15653 14.2884C6.15653 13.2691 6.98473 12.4399 8.00273 12.4399C8.47366 12.4399 8.90398 12.6177 9.23037 12.9094V11.7185V9.59643V8.56811C8.83447 8.48304 8.42378 8.43774 8.00273 8.43774Z"
|
|
13
|
+
/>
|
|
14
|
+
<path
|
|
15
|
+
d="M15.998 3.8606C12.7774 3.8606 10.157 6.48288 10.1546 9.70703V19.4197L13.153 17.828L14.1549 17.2961L14.1524 9.70703C14.1546 8.68954 14.9815 7.86273 15.998 7.86273C17.016 7.86273 17.8442 8.69197 17.8442 9.71123C17.8442 10.7305 17.016 11.5597 15.998 11.5597C15.9947 11.5597 15.9916 11.5593 15.9883 11.5593L15.0663 11.5595V12.5602V14.5674H15.0652L15.0601 15.5612L15.9721 15.5614C15.9808 15.5614 15.9894 15.5616 15.998 15.5616C16.8458 15.5616 17.6517 15.3798 18.3795 15.0532L18.4868 14.9962L18.485 15.0046C20.4667 14.0673 21.8413 12.0472 21.8413 9.71123C21.8413 6.48508 19.2201 3.8606 15.998 3.8606Z"
|
|
16
|
+
/>
|
|
17
|
+
</svg>
|
|
18
|
+
</template>
|
|
@@ -25,6 +25,7 @@ import IconCheckedBaggage20 from '@/components/icons/IconCheckedBaggage20.vue'
|
|
|
25
25
|
import IconCheckedBaggage30 from '@/components/icons/IconCheckedBaggage30.vue'
|
|
26
26
|
import IconCheckList from '@/components/icons/IconCheckList.vue'
|
|
27
27
|
import IconChild from '@/components/icons/IconChild.vue'
|
|
28
|
+
import IconCitizenPlane from '@/components/icons/IconCitizenPlane.vue'
|
|
28
29
|
import IconCollapse from '@/components/icons/IconCollapse.vue'
|
|
29
30
|
import IconCollapseAlt from '@/components/icons/IconCollapseAlt.vue'
|
|
30
31
|
import IconContact from '@/components/icons/IconContact.vue'
|
|
@@ -141,6 +142,7 @@ export const CustomCpIcons = {
|
|
|
141
142
|
'checked-baggage-20': IconCheckedBaggage20,
|
|
142
143
|
'checked-baggage-30': IconCheckedBaggage30,
|
|
143
144
|
child: IconChild,
|
|
145
|
+
citizenplane: IconCitizenPlane,
|
|
144
146
|
'collapse-alt': IconCollapseAlt,
|
|
145
147
|
collapse: IconCollapse,
|
|
146
148
|
contact: IconContact,
|