barbican-reset 1.2.4 → 1.2.8

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 (64) hide show
  1. package/components/{notification.vue → alert.vue} +29 -50
  2. package/components/container.vue +15 -7
  3. package/components/event_summary.vue +1 -1
  4. package/components/footer_logos.vue +30 -0
  5. package/components/footer_lower.vue +20 -0
  6. package/components/footer_upper.vue +43 -0
  7. package/components/form_group.vue +92 -0
  8. package/components/form_update.vue +2 -3
  9. package/components/radio_group.vue +27 -0
  10. package/helpers/mixins/_buttons.scss +14 -0
  11. package/icons/.DS_Store +0 -0
  12. package/icons/account/index.js +6 -6
  13. package/icons/account/{MembershipIcon.vue → membership.vue} +0 -0
  14. package/icons/account/{OrdersIcon.vue → orders.vue} +0 -0
  15. package/icons/account/{PaymentIcon.vue → payment.vue} +0 -0
  16. package/icons/account/{PersonalIcon.vue → personal.vue} +0 -0
  17. package/icons/account/{SupportIcon.vue → support.vue} +0 -0
  18. package/icons/account/{VideoIcon.vue → video.vue} +0 -0
  19. package/icons/{arrow_icon.vue → arrow.vue} +0 -0
  20. package/icons/{barbican/index.vue → barbican.vue} +8 -1
  21. package/icons/city_of_london_lockup.vue +30 -0
  22. package/icons/index.js +3 -1
  23. package/icons/password/index.js +2 -2
  24. package/icons/password/{RequestIcon.vue → request.vue} +0 -0
  25. package/icons/password/{ResetIcon.vue → reset.vue} +0 -0
  26. package/icons/power/alleyne.vue +3 -0
  27. package/icons/power/banff.vue +3 -0
  28. package/icons/power/council.vue +13 -0
  29. package/icons/power/index.js +3 -3
  30. package/icons/snippets/{BarbicanIcon.vue → barbican.vue} +0 -0
  31. package/icons/snippets/{ContributorIcon.vue → contributor.vue} +0 -0
  32. package/icons/snippets/index.js +4 -4
  33. package/icons/snippets/{OtherIcon.vue → other.vue} +0 -0
  34. package/icons/snippets/{PinIcon.vue → pin.vue} +0 -0
  35. package/icons/stream/{AirplayIcon.vue → airplay.vue} +0 -0
  36. package/icons/stream/{CastIcon.vue → cast.vue} +0 -0
  37. package/icons/stream/{ChatIcon.vue → chat.vue} +0 -0
  38. package/icons/stream/close.vue +7 -0
  39. package/icons/stream/{CogIcon.vue → cog.vue} +0 -0
  40. package/icons/stream/index.js +7 -7
  41. package/icons/stream/{LiveIcon/index.vue → live.vue} +46 -1
  42. package/icons/stream/{VolumeIcon.vue → volume.vue} +0 -0
  43. package/index.js +13 -5
  44. package/package.json +1 -1
  45. package/scss/_atomic.scss +10 -0
  46. package/scss/_btn.scss +4 -0
  47. package/scss/_radio-group.scss +4 -8
  48. package/scss/card/_account.scss +16 -0
  49. package/scss/card/index.scss +1 -0
  50. package/scss/index.scss +9 -3
  51. package/scss/table/_details.scss +66 -0
  52. package/scss/table/_orders.scss +50 -0
  53. package/scss/table/_preferences.scss +73 -0
  54. package/scss/table/_tickets.scss +5 -3
  55. package/scss/table/index.scss +3 -0
  56. package/components/account_card.vue +0 -31
  57. package/icons/barbican/index.scss +0 -5
  58. package/icons/power/AlleyneIcon.vue +0 -16
  59. package/icons/power/BanffIcon.vue +0 -41
  60. package/icons/power/CouncilIcon.vue +0 -56
  61. package/icons/stream/LiveIcon/live_icon.scss +0 -42
  62. package/icons/stream/close_icon.vue +0 -23
  63. package/scss/_form-group.scss +0 -59
  64. package/scss/_radio.scss +0 -4
@@ -5,18 +5,20 @@
5
5
  <div :class="$style.title" v-if="title.length > 0 && !toggle">{{ title }}</div>
6
6
  <slot />
7
7
  </span>
8
- <button v-if="toggle" :class="$style.button" @click="() => $emit('close')">
9
- <close-icon :class="styleIcon" />
10
- </button>
8
+ <b-button v-if="toggle" variant="invisible" :class="styleButton" @click="$emit('close')">
9
+ <close-icon />
10
+ </b-button>
11
11
  </div>
12
12
  </div>
13
13
  </template>
14
14
 
15
15
  <script>
16
+ import { BButton } from 'bootstrap-vue'
16
17
  import { CloseIcon } from 'barbican-reset/icons/stream'
17
18
  export default {
18
- name: "Notification",
19
+ name: "Alert",
19
20
  components: {
21
+ BButton,
20
22
  CloseIcon,
21
23
  },
22
24
  props: {
@@ -57,7 +59,6 @@ export default {
57
59
  styleContainer() {
58
60
  let style = this.$style;
59
61
  let output = [style.container];
60
-
61
62
  if (this.center) { output.push(style.center); }
62
63
  if (this.margin) {
63
64
  switch (this.margin) {
@@ -66,35 +67,29 @@ export default {
66
67
  default: output.push(style.margin_sm); break;
67
68
  }
68
69
  }
69
-
70
70
  return output;
71
71
  },
72
72
  styleWrap() {
73
73
  let style = this.$style;
74
74
  let output = [style.wrap];
75
-
76
75
  if (this.error) { output.push(style.error, 'error'); }
77
76
  if (this.success) { output.push(style.success, 'success'); }
78
77
  if (this.inline) { output.push(style.inline); }
79
78
  if (this.toggle) { output.push(style.toggle); }
80
-
81
79
  return output;
82
80
  },
83
81
  styleSpan() {
84
82
  let style = this.$style;
85
83
  let output = [];
86
-
87
84
  if (this.flex) { output.push(style.flex); }
88
-
89
85
  return output;
90
86
  },
91
- styleIcon() {
87
+ styleButton() {
92
88
  let style = this.$style;
93
- let output = [style.icon];
94
-
89
+ let output = [style.button];
95
90
  if (this.error) { output.push(style.error); }
96
- if (this.success) { output.push(style.success); }
97
-
91
+ else if (this.success) { output.push(style.success); }
92
+ else { output.push(style.neutral); }
98
93
  return output;
99
94
  }
100
95
  }
@@ -103,29 +98,21 @@ export default {
103
98
 
104
99
  <style lang="scss" module>
105
100
 
101
+ $neutral-colors: $c-status-neutral, $c-status-neutral-fade;
106
102
  $success-colors: $c-status-success, $c-status-success-fade;
107
103
  $error-colors: $c-status-error, $c-status-error-fade;
108
104
 
109
- @mixin icon(
110
- $color: $c-status-neutral,
111
- $fade: $c-status-neutral-fade) {
112
-
113
- path[data-fill] { fill: $fade; }
114
- path[data-outline],
115
- path[data-cross] { fill: $color; }
105
+ @mixin icon($color, $fade) {
106
+ [data-fill] { fill: $fade; }
107
+ [data-outline],
108
+ [data-cross] { fill: $color; }
116
109
 
117
110
  @include focus {
118
- path[data-fill] { fill: $color; }
119
- path[data-cross] { fill: $fade; }
111
+ [data-fill] { fill: $color; }
112
+ [data-cross] { fill: $fade; }
120
113
  }
121
114
  }
122
115
 
123
- @mixin invisible {
124
- background: transparent;
125
- line-height: 1;
126
- padding: 0;
127
- }
128
-
129
116
  .container {
130
117
  @include media-breakpoint-down(xs) {
131
118
  font-size: $font-size-sm;
@@ -205,26 +192,6 @@ $error-colors: $c-status-error, $c-status-error-fade;
205
192
  }
206
193
  }
207
194
 
208
- .button, .button:focus {
209
- @include invisible;
210
- @include focus {
211
- @include invisible;
212
- }
213
- }
214
-
215
- .icon {
216
- @include icon;
217
- width: 1.375rem;
218
-
219
- &.error {
220
- @include icon($error-colors...);
221
- }
222
-
223
- &.success {
224
- @include icon($success-colors...);
225
- }
226
- }
227
-
228
195
  .title {
229
196
  margin-bottom: 0.25rem;
230
197
  font-weight: 700;
@@ -235,6 +202,18 @@ $error-colors: $c-status-error, $c-status-error-fade;
235
202
  display: flex;
236
203
  }
237
204
 
205
+ .button.neutral {
206
+ @include icon($neutral-colors...);
207
+ }
208
+
209
+ .button.success {
210
+ @include icon($success-colors...);
211
+ }
212
+
213
+ .button.error {
214
+ @include icon($error-colors...);
215
+ }
216
+
238
217
  </style>
239
218
 
240
219
  <style lang="scss" scoped>
@@ -20,6 +20,10 @@ export default {
20
20
  thin: {
21
21
  type: Boolean,
22
22
  default: false
23
+ },
24
+ footer: {
25
+ type: Boolean,
26
+ default: false
23
27
  }
24
28
  },
25
29
  computed: {
@@ -35,6 +39,7 @@ export default {
35
39
  let output = [style.inner];
36
40
  if (this.masthead) { output.push(style.masthead); }
37
41
  if (this.thin) { output.push(style.thin); }
42
+ if (this.footer) { output.push(style.footer); }
38
43
  return output;
39
44
  }
40
45
  }
@@ -49,7 +54,7 @@ export default {
49
54
 
50
55
  &.splash {
51
56
  padding-right: 10%;
52
- padding-left: 10%;
57
+ padding-left: 10%;
53
58
  }
54
59
 
55
60
  &.masthead {
@@ -60,15 +65,18 @@ export default {
60
65
 
61
66
  .inner {
62
67
  max-width: $constrained_content_width--wide;
63
- padding-bottom: 1.5rem;
64
- padding-top: 1.5rem;
65
68
  margin: 0 auto;
66
69
 
67
- @include media-breakpoint-up(sm) {
68
- padding-bottom: 2.5rem;
69
- padding-top: 2.5rem;
70
- }
70
+ &:not(.footer) {
71
+ padding-bottom: 1.5rem;
72
+ padding-top: 1.5rem;
71
73
 
74
+ @include media-breakpoint-up(sm) {
75
+ padding-bottom: 2.5rem;
76
+ padding-top: 2.5rem;
77
+ }
78
+ }
79
+
72
80
  &.thin {
73
81
  max-width: $constrained_content_width--thin;
74
82
  }
@@ -12,7 +12,7 @@
12
12
  </div>
13
13
  </template>
14
14
 
15
- <script type="text/javascript">
15
+ <script>
16
16
  export default {
17
17
  name: "EventSummary",
18
18
  props: {
@@ -0,0 +1,30 @@
1
+ <template>
2
+ <div :class="$style.logos">
3
+ <slot />
4
+ </div>
5
+ </template>
6
+
7
+ <script>
8
+ export default {
9
+ name: 'FooterLogos'
10
+ }
11
+ </script>
12
+
13
+ <style lang="scss" module>
14
+
15
+ .logos {
16
+ margin: -1rem;
17
+
18
+ > * {
19
+ margin: 1rem;
20
+ }
21
+
22
+ > svg {
23
+ display: inline-block;
24
+ height: 3rem;
25
+ fill: $white;
26
+ width: auto;
27
+ }
28
+ }
29
+
30
+ </style>
@@ -0,0 +1,20 @@
1
+ <template>
2
+ <div :class="$style.lower">
3
+ <slot />
4
+ </div>
5
+ </template>
6
+
7
+ <script>
8
+ export default {
9
+ name: 'FooterLower'
10
+ }
11
+ </script>
12
+
13
+ <style lang="scss" module>
14
+
15
+ .lower {
16
+ padding-bottom: 1.875rem;
17
+ padding-top: 1.875rem;
18
+ }
19
+
20
+ </style>
@@ -0,0 +1,43 @@
1
+ <template>
2
+ <div :class="styleUpper">
3
+ <slot />
4
+ </div>
5
+ </template>
6
+
7
+ <script>
8
+ export default {
9
+ name: 'FooterUpper',
10
+ props: {
11
+ splash: {
12
+ type: Boolean,
13
+ default: false
14
+ }
15
+ },
16
+ computed: {
17
+ styleUpper() {
18
+ const style = this.$style;
19
+ let output = [style.upper];
20
+ if (this.splash) { output.push(style.splash); }
21
+ return output;
22
+ },
23
+ }
24
+ }
25
+ </script>
26
+
27
+ <style lang="scss" module>
28
+
29
+ .upper {
30
+ padding-top: 3.75rem;
31
+
32
+ @include media-breakpoint-up(md) {
33
+ grid-template-columns: 11rem auto;
34
+ display: grid;
35
+ gap: 1rem;
36
+ }
37
+
38
+ &:not(.splash) {
39
+ padding-bottom: 3.75rem;
40
+ }
41
+ }
42
+
43
+ </style>
@@ -0,0 +1,92 @@
1
+ <template>
2
+ <div :class="$style.container">
3
+ <label v-if="label" :for="id">
4
+ <strong>{{ label }}</strong> <span v-if="label && required">(required)</span><span v-if="label && optional">(optional)</span>
5
+ </label>
6
+ <div :class="styleContent">
7
+ <slot />
8
+ </div>
9
+ </div>
10
+ </template>
11
+
12
+ <script type="text/javascript">
13
+ export default {
14
+ name: 'FormGroup',
15
+ props: {
16
+ label: {
17
+ type: String
18
+ },
19
+ required: {
20
+ type: Boolean
21
+ },
22
+ optional: {
23
+ type: Boolean
24
+ },
25
+ submit: {
26
+ type: Boolean
27
+ }
28
+ },
29
+ computed: {
30
+ styleContent() {
31
+ const style = this.$style;
32
+ let output = [style.content];
33
+ if (!this.label) { output.push(style.no_label); }
34
+ if (this.submit) { output.push(style.submit); }
35
+ return output;
36
+ },
37
+ id() {
38
+ return this.label.toLowerCase().split(" ").join("_");
39
+ }
40
+ }
41
+ }
42
+ </script>
43
+
44
+ <style lang="scss" module>
45
+
46
+ .container {
47
+
48
+ &:not(:last-of-type) {
49
+ margin-bottom: 1rem;
50
+ }
51
+
52
+ @include media-breakpoint-up(sm) {
53
+ grid-template-columns: 33fr 67fr;
54
+ align-items: center;
55
+ gap: $gap-account;
56
+ display: grid;
57
+ }
58
+
59
+ label {
60
+ font-weight: normal;
61
+
62
+ @include media-breakpoint-down(sm) {
63
+ margin-bottom: 0.5rem;
64
+ }
65
+ }
66
+
67
+ input {
68
+ width: 100%;
69
+ margin: 0;
70
+ }
71
+ }
72
+
73
+ .content {
74
+
75
+ &.no_label {
76
+ @include media-breakpoint-up(sm) {
77
+ grid-column: 2 / 3;
78
+ }
79
+ }
80
+
81
+ &.submit {
82
+ text-align: right;
83
+
84
+ @include media-breakpoint-down(sm) {
85
+ > button {
86
+ width: 100%;
87
+ }
88
+ }
89
+ }
90
+ }
91
+
92
+ </style>
@@ -14,12 +14,11 @@
14
14
  <style lang="scss" module>
15
15
 
16
16
  .container {
17
- grid-template-columns: auto 6rem;
18
- column-gap: 0.5rem;
19
17
  display: grid;
18
+ gap: 1rem;
20
19
 
21
20
  @include media-breakpoint-up(sm) {
22
- column-gap: 1rem;
21
+ grid-template-columns: auto 6rem;
23
22
  }
24
23
  }
25
24
 
@@ -0,0 +1,27 @@
1
+ <template>
2
+ <div :class="styleGroup">
3
+ <slot />
4
+ </div>
5
+ </template>
6
+
7
+ <script type="text/javascript">
8
+ export default {
9
+ name: 'RadioGroup',
10
+ props: {
11
+ error: {
12
+ type: Boolean
13
+ },
14
+ success: {
15
+ type: Boolean
16
+ }
17
+ },
18
+ computed: {
19
+ styleGroup() {
20
+ let styles = ['radio-group'];
21
+ if (this.error) { styles.push('error'); }
22
+ if (this.success) { styles.push('success'); }
23
+ return styles;
24
+ }
25
+ }
26
+ }
27
+ </script>
@@ -188,6 +188,20 @@
188
188
  );
189
189
  }
190
190
 
191
+ @mixin btn-invisible {
192
+ &, &:focus {
193
+ background: transparent;
194
+ line-height: 1;
195
+ padding: 0;
196
+
197
+ @include focus {
198
+ background: transparent;
199
+ line-height: 1;
200
+ padding: 0;
201
+ }
202
+ }
203
+ }
204
+
191
205
  @mixin btn-expand {
192
206
  display: block;
193
207
  }
Binary file
@@ -1,9 +1,9 @@
1
- import PersonalIcon from './PersonalIcon'
2
- import MembershipIcon from './MembershipIcon'
3
- import VideoIcon from './VideoIcon'
4
- import PaymentIcon from './PaymentIcon'
5
- import OrdersIcon from './OrdersIcon'
6
- import SupportIcon from './SupportIcon'
1
+ import PersonalIcon from './personal'
2
+ import MembershipIcon from './membership'
3
+ import VideoIcon from './video'
4
+ import PaymentIcon from './payment'
5
+ import OrdersIcon from './orders'
6
+ import SupportIcon from './support'
7
7
 
8
8
  export {
9
9
  PersonalIcon,
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -10,4 +10,11 @@
10
10
  </svg>
11
11
  </template>
12
12
 
13
- <style src="./index.scss" lang="scss" module></style>
13
+ <style lang="scss" module>
14
+
15
+ .logo {
16
+ height: auto;
17
+ width: 10rem;
18
+ }
19
+
20
+ </style>
@@ -0,0 +1,30 @@
1
+ <template>
2
+ <div :class="$style.lockup">
3
+ <a href="//www.cityoflondon.gov.uk" target="_blank">
4
+ <city-of-london-logo />
5
+ </a>
6
+ <small>
7
+ The City of London<br />Corporation is the founder<br />and principal funder of<br />the Barbican Centre
8
+ </small>
9
+ </div>
10
+ </template>
11
+
12
+ <script>
13
+ import CityOfLondonLogo from './city_of_london'
14
+ export default {
15
+ name: 'CityOfLondonLockup',
16
+ components: {
17
+ CityOfLondonLogo
18
+ }
19
+ }
20
+ </script>
21
+
22
+ <style lang="scss" module>
23
+
24
+ .lockup {
25
+ display: inline-flex;
26
+ align-items: center;
27
+ gap: 0.625rem;
28
+ }
29
+
30
+ </style>
package/icons/index.js CHANGED
@@ -1,12 +1,14 @@
1
1
  import BarbicanLogo from './barbican'
2
2
  import CityOfLondonLogo from './city_of_london'
3
- import ArrowIcon from './arrow_icon'
3
+ import CityOfLondonLockup from './city_of_london_lockup'
4
+ import ArrowIcon from './arrow'
4
5
  import BackArrow from './back_arrow'
5
6
  import CartIcon from './cart'
6
7
 
7
8
  export {
8
9
  BarbicanLogo,
9
10
  CityOfLondonLogo,
11
+ CityOfLondonLockup,
10
12
  ArrowIcon,
11
13
  BackArrow,
12
14
  CartIcon
@@ -1,5 +1,5 @@
1
- import RequestIcon from './RequestIcon'
2
- import ResetIcon from './ResetIcon'
1
+ import RequestIcon from './request'
2
+ import ResetIcon from './reset'
3
3
 
4
4
  export {
5
5
  RequestIcon,
File without changes
File without changes
@@ -0,0 +1,3 @@
1
+ <template>
2
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0" y="0" width="325" height="181" viewBox="0 0 325 181" xml:space="preserve" enable-background="new 0 0 325 181"><path d="M25.2,16.6L11.9,57.3h26.6L25.2,16.6z M50.5,0.8l28.3,86.8H48.4l-9.3-28.5H11.4l9.3,28.5H0.2l24.1-73.9L20,0.8H50.5z M80.6,87.6V0.8h30.3v85h11.3l29.4-29.4v31.2H80.6z M156.4,87.6V0.8h30.3v85h9.8l29.4-29.4v31.2H156.4z M230.9,87.6V0.8h69.5v28.1 L273,2.6h-11.8v40.7h6L284.7,26v28.7v7.8l-17.5-17.3h-6v40.7H273l27.4-26.2v28.1h-34.8H230.9z M23.7,180.2v-40.1L0,93.4h31.8 l22.4,44.3L67,112l-8.6-18.6h20.3l-23.3,46.7v40.1H23.7z M138.7,180l-56.5-47.1V180h-1.6V93.4h1.6l67.8,56.5v-29.1l-29.8-27.4h31.4 v57.9V180H138.7z M156.4,180.1V93.3h69.5v28.1l-27.4-26.2h-11.8v40.7h6l17.5-17.3v28.7v7.8l-17.5-17.3h-6v40.7h11.8l27.4-26.2v28.1 h-34.8H156.4z M261.1,125.4c-2,1.7-2.8,4.5-2.3,8.3c0.5,3.9,1.8,8.1,4,12.8c2.2,4.7,4.8,9,7.9,13.1c3.1,4.1,6.2,7.2,9.4,9.3 c3.2,2.1,6,2.5,8.5,1.3L261.1,125.4z M269.8,93.4h30.6v22.1l-30.7-20.3c-1.1,0-2.1,0.5-2.9,1.5c-0.8,0.9-1.3,2.1-1.2,3.4 c0,1.3,0.8,2.5,2.3,3.5L287,116l19,32.1l19-23.9v25.4h-18.1l18.1,30.5h-30.3l-5.3-8.5c-8.6,5.8-16.4,8.7-23.3,8.6 c-7-0.1-12.7-2.1-17.1-6.2c-4.5-4.1-7.2-9.1-8.4-15.3c-1.1-6.1-0.2-12.4,2.9-18.6c3-6.3,8.6-11.7,16.6-16.3l-3.9-6.3 c-2.5-4.3-3.5-8.3-2.9-11.9c0.6-3.6,2.4-6.6,5.4-8.8C261.6,94.6,265.4,93.5,269.8,93.4L269.8,93.4z"/></svg>
3
+ </template>
@@ -0,0 +1,3 @@
1
+ <template>
2
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0" y="0" width="680" height="382" viewBox="0 0 680 382" xml:space="preserve" enable-background="new 0 0 680 382"><path d="M90.3,111.3c16.1-4.1,26.6-14.3,26.6-32.5c0-25.7-17.5-40.7-61.3-40.7H0.4v159h64.1c42.9,0,61.1-19.3,61.1-45.7 C125.5,130.1,113.9,115.8,90.3,111.3z M30.3,62.9h27.5c18.4,0,28.2,5,28.2,19.3c0,14.5-10.4,20.2-24.1,20.2H30.3V62.9z M65.5,172.4 H30.3v-47.5H65c13.6,0,28.8,4.1,28.8,24.5C93.9,165.1,82.1,172.4,65.5,172.4z M405.5,152L339.6,38.2h-33.4v159h27.7V86.3l65.5,110.9 h34v-159h-27.9V152z M458.2,197.2h30.2v-64.8h65.2v-25h-65.2V63.6h70.5V38.2H458.2V197.2z M679.5,63.6V38.2H578.9v159h30.2v-64.8 h65.2v-25h-65.2V63.6H679.5z M125.1,197.2h34.4L208.9,76l49.4,121.2h34.4L208.9,0.8L125.1,197.2z M129.1,233.7l-9.2,2.4 c-1.9-4.7-4.9-7.2-9.9-7.2c-6.9,0-11.3,5.3-11.3,14.7c0,9.3,3.9,15,11.4,15c5.7,0,8.9-2.9,10.8-8.2l9,2.8 c-3.4,8.9-11.1,13.3-20.3,13.3c-10,0-20.7-6.2-20.7-22.9c0-16.2,10.3-22.8,21-22.8C117.8,221,125.5,224.1,129.1,233.7z M164.7,229.9 h-19.6v9.7h18.3v7.6h-18.3v10.6h20.2v7.8h-29.6V222h29.1v7.9H164.7z M208.9,265.6H198l-16.4-29v29H173V222h10.9l16.4,29.7V222h8.6 V265.6z M248.9,229.9h-12.3v35.6h-9.5v-35.6h-12.3V222h34.1V229.9z M272.2,222c12.1,0,17.2,6,17.2,13.5c0,5.8-3,10-9,12.1l11.4,18 h-11.1l-9.6-16.5h-6v16.5h-9.5V222H272.2z M265.1,229.7v12h7.5c4,0,7.1-1.4,7.1-6.2c0-3.9-2.5-5.8-6.8-5.8H265.1z M325.8,229.9 h-19.6v9.7h18.3v7.6h-18.3v10.6h20.2v7.8h-29.6V222h29.1v7.9H325.8z M30,286.6H11.1v10.8h17.5v7.7H11.1v17.2H1.6v-43.5H30V286.6z M77.2,300.6c0,15.9-10.5,22.8-21.6,22.8c-10.1,0-21.6-6-21.6-22.9c0-16.2,10.5-22.8,21.6-22.8C65.8,277.7,77.2,283.4,77.2,300.6z M43.8,300.4c0,9.3,4.1,15.1,11.8,15.1c6.8,0,11.8-5.3,11.8-14.8c0-9.2-4-15.1-11.8-15.1C48.5,285.6,43.8,291,43.8,300.4z M99,278.8 c12.1,0,17.2,6,17.2,13.5c0,5.8-3,10-9,12.1l11.4,18h-11.1l-9.6-16.5h-6v16.5h-9.5v-43.5H99V278.8z M91.9,286.5v12h7.5 c4,0,7.1-1.4,7.1-6.2c0-3.9-2.5-5.8-6.8-5.8H91.9z M164.5,315.5h-16.4l-2,6.8h-9.7l14.1-43.5h11.9l14.1,43.5h-10.1L164.5,315.5z M150.2,307.9h12.2l-6.1-21.8L150.2,307.9z M198.1,278.8c12.1,0,17.2,6,17.2,13.5c0,5.8-3,10-9,12.1l11.4,18h-11.1l-9.6-16.5h-6 v16.5h-9.5v-43.5h16.6V278.8z M191,286.5v12h7.5c4,0,7.1-1.4,7.1-6.2c0-3.9-2.5-5.8-6.8-5.8H191z M253,286.7h-12.3v35.6h-9.5v-35.6 H219v-7.9h34V286.7z M254,315.3l6.2-5.7c3.5,3.6,7.6,5.8,13.6,5.8c5,0,8.5-1.9,8.5-5.2c0-3.2-1.6-4.9-10.8-6.5 c-10.3-1.9-15.2-5.6-15.2-13.3c0-7.8,6.8-12.8,17-12.8c8.6,0,14.5,3.4,18.3,7.7l-6.5,5.2c-2.2-2.5-5.6-5.1-11.8-5.1 c-4.7,0-7.3,1.7-7.3,4.7c0,2.9,1.7,4.2,10.5,5.8c10.9,1.9,15.7,5.7,15.7,13.6c0,8.6-7.1,13.7-18.5,13.7 C265.6,323.4,258.6,320.6,254,315.3z M337.9,315.5h-16.4l-2,6.8h-9.7l14.1-43.5h11.9l14.1,43.5h-10.1L337.9,315.5z M323.6,307.9 h12.2l-6.1-21.8L323.6,307.9z M389.9,322.3H379l-16.4-29v29H354v-43.5h10.9l16.4,29.7v-29.7h8.6V322.3z M410.7,278.8 c12.2,0,23,5.8,23,21.2c0,17.1-11,22.4-21.2,22.4h-16.1v-43.5h14.3V278.8z M406.1,286.5v28h6.5c5.5,0,11.4-2.7,11.4-14.6 c0-8.1-3.7-13.4-13-13.4H406.1z M79.7,349.2l-9.2,2.4c-1.9-4.7-4.9-7.2-9.9-7.2c-6.9,0-11.3,5.3-11.3,14.7c0,9.3,3.9,15,11.4,15 c5.7,0,8.9-2.9,10.8-8.2l9,2.8c-3.4,8.9-11.1,13.3-20.3,13.3c-10,0-20.7-6.2-20.7-22.9c0-16.2,10.3-22.8,21-22.8 C68.4,336.5,76.1,339.6,79.7,349.2z M101.7,337.5c12.1,0,17.2,6,17.2,13.5c0,5.8-3,10-9,12.1l11.4,18h-11.1l-9.6-16.5h-6v16.5h-9.5 v-43.5h16.6V337.5z M94.6,345.2v12h7.5c4,0,7.1-1.4,7.1-6.2c0-3.9-2.5-5.8-6.8-5.8H94.6z M154.6,345.4H135v9.7h18.3v7.6H135v10.6 h20.2v7.8h-29.6v-43.5h29.1L154.6,345.4L154.6,345.4z M188.5,374.2h-16.4l-2,6.8h-9.7l14.1-43.5h11.9l14.1,43.5h-10.1L188.5,374.2z M174.2,366.6h12.2l-6.1-21.8L174.2,366.6z M230.7,345.4h-12.3V381h-9.5v-35.6h-12.3v-7.9h34.1V345.4z M244.9,381.1h-9.5v-43.5h9.5 V381.1z M275.7,381.1h-11.9l-13.1-43.5h10.1l9.1,35.8l9-35.8h9.9L275.7,381.1z M303.9,381.1h-9.5v-43.5h9.5V381.1z M343.7,345.4 h-12.3V381h-9.5v-35.6h-12.3v-7.9h34.1V345.4z M371.5,363.8v17.3H362v-17.2l-14.9-26.4h10.8l9,18.6l9.1-18.6h10.4L371.5,363.8z"/></svg>
3
+ </template>
@@ -0,0 +1,13 @@
1
+ <template>
2
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0" y="0" width="246" height="58" viewBox="0 0 246 58" xml:space="preserve" enable-background="new 0 0 246 58"><path d="M95.2,17.9h3.6l6.3,16.1h-3.6l-1.4-3.7h-6.5L92.3,34H89L95.2,17.9z M97,21.1L97,21.1l-2.4,6.7h4.7L97,21.1L97,21.1z M106.9,17.9h3.5c3.5,0,7.6-0.1,7.6,4.4c0,1.9-1.3,3.5-3.3,3.7l0,0c0.9,0.1,1.4,1,1.7,1.7L119,34h-3.6l-1.9-5 c-0.5-1.2-0.9-1.7-2.2-1.7h-1V34h-3.2V17.9H106.9z M110.1,24.7h1.1c1.6,0,3.4-0.2,3.4-2.2c0-1.9-1.8-2.1-3.4-2.1h-1.1V24.7 L110.1,24.7z M124.1,20.4h-4.6v-2.5H132v2.5h-4.6V34h-3.2V20.4 M142.7,20.8c-1-0.4-2.1-0.7-3.3-0.7c-1.1,0-2.5,0.5-2.5,2.2 c0,2.8,7.1,1.6,7.1,7c0,3.5-2.8,4.9-6.1,4.9c-1.8,0-2.5-0.2-4.1-0.6l0.3-2.9c1.1,0.6,2.4,1,3.7,1c1.2,0,2.9-0.6,2.9-2.1 c0-3.1-7.1-1.8-7.1-7.1c0-3.6,2.8-4.9,5.6-4.9c1.4,0,2.7,0.2,3.9,0.6L142.7,20.8 M164.5,33.8c-1.2,0.3-2.4,0.5-3.7,0.5 c-5.2,0-8.8-2.6-8.8-8.1s3.4-8.6,8.8-8.6c1.1,0,2.5,0.2,3.6,0.7l-0.2,2.7c-1.2-0.7-2.3-0.9-3.5-0.9c-3.3,0-5.4,2.5-5.4,5.8 s2,5.8,5.5,5.8c1.3,0,2.8-0.3,3.5-0.7L164.5,33.8 M173.9,17.6c5.1,0,7.9,3.4,7.9,8.3s-2.8,8.4-7.9,8.4c-5.2,0-7.9-3.4-7.9-8.4 S168.8,17.6,173.9,17.6 M173.9,31.7c3.3,0,4.5-2.9,4.5-5.8c0-2.8-1.3-5.8-4.5-5.8s-4.5,2.9-4.5,5.8S170.6,31.7,173.9,31.7 M184,17.9 h3.2v9.3c0,2.7,0.9,4.5,3.4,4.5s3.3-1.8,3.3-4.5v-9.3h3.2v10.3c0,4.3-2.4,6.1-6.6,6.1c-4.1,0-6.6-1.8-6.6-6.1V17.9 M199.6,17.9h4 l6.1,12.1l0,0V17.9h3.1V34h-3.9l-6.2-12.1l0,0V34h-3.1L199.6,17.9 M227.4,33.8c-1.2,0.3-2.4,0.5-3.7,0.5c-5.2,0-8.8-2.6-8.8-8.1 s3.4-8.6,8.8-8.6c1.1,0,2.5,0.2,3.6,0.7l-0.2,2.7c-1.2-0.7-2.3-0.9-3.5-0.9c-3.3,0-5.4,2.5-5.4,5.8s2,5.8,5.5,5.8 c1.3,0,2.8-0.3,3.5-0.7L227.4,33.8 M229.9,34h3.2V17.9h-3.2V34z M235.7,17.9h3.2v13.6h6.3V34h-9.5V17.9 M89,41h9.5v2.5h-6.3v4H98V50 h-5.8v4.5h6.3V57H89V41 M101.2,41h4l6.1,12.1l0,0V41h3.1v16.1h-3.9L104.3,45l0,0v12.1h-3.1L101.2,41 M130,44.1 c-1.2-0.6-2.9-0.9-4.2-0.9c-3.8,0-5.8,2.5-5.8,5.8s2,5.7,5.5,5.7c0.9,0,1.6-0.1,2.1-0.2v-4.2h-3.4v-2.5h6.5v8.7 c-1.7,0.5-3.5,0.8-5.2,0.8c-5.2,0-8.8-2.6-8.8-8.1s3.4-8.6,8.8-8.6c1.9,0,3.3,0.3,4.7,0.7L130,44.1 M133.3,41h3.2v13.6h6.3v2.5h-9.5 V41 M150.5,41h3.6l6.3,16.1h-3.6l-1.4-3.7H149l-1.4,3.7h-3.4L150.5,41z M152.3,44.2L152.3,44.2l-2.4,6.7h4.7L152.3,44.2L152.3,44.2z M162.1,41h4l6.1,12.1l0,0V41h3.1v16.1h-3.9L165.2,45l0,0v12.1h-3.1L162.1,41 M177.9,41h4.4c4.9,0,9.3,1.7,9.3,8.1s-4.4,8.1-9.3,8.1 h-4.4V41z M181.2,54.5h1.8c2.7,0,5.3-2,5.3-5.5s-2.6-5.5-5.3-5.5h-1.8V54.5L181.2,54.5z M89.1,8.5c0.4,0.2,0.9,0.3,1.6,0.3 c1.1,0,2.3-0.6,2.3-2c0-2.1-3.3-2.1-3.3-3.5c0-0.9,0.8-1.2,1.5-1.2c0.5,0,1,0.1,1.3,0.3l0.1-0.6c-0.5-0.2-1-0.2-1.4-0.2 C90,1.6,89,2.3,89,3.4c0,1.9,3.2,2,3.2,3.4c0,1-0.7,1.5-1.6,1.5c-0.7,0-1.1-0.2-1.6-0.4L89.1,8.5z M98.5,3.5h-0.6v2.9 c0,0.9-0.4,1.9-1.5,1.9c-0.9,0-1.2-0.6-1.2-1.6V3.5h-0.6v3.3c0,1.1,0.5,2,1.8,2c1.1,0,1.5-0.6,1.7-1l0,0v0.9h0.6c0-0.4,0-0.8,0-1.2 v-4H98.5z M100.2,10.8h0.6v-3l0,0c0.3,0.7,0.8,1,1.6,1c1.4,0,2.1-1.2,2.1-2.7c0-1.6-0.6-2.7-2.1-2.7c-1.1,0-1.5,0.8-1.7,1.1l0,0V3.6 h-0.6L100.2,10.8L100.2,10.8z M103.9,6.1c0,1-0.3,2.2-1.5,2.2c-1.1,0-1.5-1.2-1.5-2.2c0-0.9,0.4-2.2,1.5-2.2 C103.6,3.9,103.9,5.1,103.9,6.1L103.9,6.1z M106,10.8h0.6v-3l0,0c0.3,0.7,0.8,1,1.6,1c1.4,0,2.1-1.2,2.1-2.7c0-1.6-0.6-2.7-2.1-2.7 c-1.1,0-1.5,0.8-1.7,1.1l0,0V3.6H106V10.8z M109.7,6.1c0,1-0.3,2.2-1.5,2.2c-1.1,0-1.5-1.2-1.5-2.2c0-0.9,0.4-2.2,1.5-2.2 C109.4,3.9,109.7,5.1,109.7,6.1L109.7,6.1z M111.6,6.1c0,1.4,0.7,2.7,2.4,2.7c1.7,0,2.4-1.3,2.4-2.7s-0.7-2.7-2.4-2.7 C112.3,3.4,111.6,4.7,111.6,6.1L111.6,6.1z M112.3,6.1c0-1.2,0.6-2.2,1.7-2.2s1.7,1,1.7,2.2s-0.6,2.2-1.7,2.2 C112.9,8.2,112.3,7.3,112.3,6.1L112.3,6.1z M117.8,8.7h0.6V6.1c0-0.9,0.3-2.1,1.3-2.1c0.2,0,0.3,0,0.5,0.1V3.4 c-0.1,0-0.3-0.1-0.4-0.1c-0.7,0-1.1,0.5-1.3,1.1l0,0v-1h-0.6c0,0.4,0,0.6,0,1.2L117.8,8.7L117.8,8.7z M123.8,3.5h-1.2V2L122,2.2v1.2 h-1V4h1v3c0,0.9,0,1.7,1.2,1.7c0.3,0,0.6-0.1,0.8-0.1V8.1c-0.2,0.1-0.3,0.1-0.6,0.1c-0.5,0-0.7-0.4-0.7-0.9V4h1.2L123.8,3.5 L123.8,3.5z M128.5,7.8c-0.3,0.2-1,0.4-1.5,0.4c-1.1,0-1.7-0.9-1.7-2h3.5V5.9c0-1.4-0.6-2.6-2.1-2.6c-1.3,0-2.2,1.1-2.2,2.7 s0.6,2.7,2.4,2.7c0.5,0,1.1-0.1,1.5-0.3L128.5,7.8L128.5,7.8z M125.4,5.7c0-0.9,0.6-1.8,1.5-1.8c1,0,1.3,0.9,1.3,1.8H125.4z M134.5,1h-0.6v3.3l0,0c-0.1-0.3-0.6-1-1.6-1c-1.5,0-2.1,1.1-2.1,2.7c0,1.5,0.7,2.7,2.1,2.7c0.7,0,1.3-0.3,1.6-0.9l0,0v0.8h0.6V1z M130.7,6.1c0-1,0.3-2.2,1.5-2.2c1.1,0,1.5,1.2,1.5,2.2c0,0.9-0.4,2.2-1.5,2.2C131.1,8.2,130.7,7.1,130.7,6.1L130.7,6.1z M142,3.5 h-0.6v2.9c0,0.9-0.4,1.9-1.5,1.9c-0.9,0-1.2-0.6-1.2-1.6V3.5H138v3.3c0,1.1,0.5,2,1.8,2c1.1,0,1.5-0.6,1.7-1l0,0v0.9h0.6 c0-0.4,0-0.8,0-1.2v-4H142z M143.3,8.5c0.5,0.2,1,0.2,1.5,0.2c0.8,0,1.8-0.4,1.8-1.5c0-1.7-2.6-1.6-2.6-2.5c0-0.7,0.5-0.9,1.1-0.9 c0.4,0,0.8,0.1,1.1,0.2l0.1-0.6c-0.5-0.2-1-0.2-1.3-0.2c-0.9,0-1.7,0.4-1.7,1.4c0,1.5,2.5,1.3,2.5,2.5c0,0.6-0.5,0.9-1.1,0.9 c-0.5,0-1-0.1-1.4-0.3L143.3,8.5z M147.8,8.7h0.6V3.5h-0.6V8.7z M147.8,2.1h0.6V1.2h-0.6V2.1z M150.2,8.7h0.6V5.8 c0-0.9,0.4-1.9,1.5-1.9c0.9,0,1.2,0.6,1.2,1.6v3.1h0.6V5.3c0-1.1-0.5-2-1.8-2c-1.1,0-1.5,0.6-1.7,1l0,0V3.5H150c0,0.4,0,0.8,0,1.2v4 H150.2z M156.3,6.1c0-1,0.3-2.2,1.5-2.2s1.5,0.9,1.5,2.2c0,0.9-0.4,2-1.6,2C156.7,8.1,156.3,7.1,156.3,6.1L156.3,6.1z M160,3.5h-0.6 v0.6l0,0c-0.5-0.6-0.9-0.7-1.6-0.7c-1.5,0-2.1,1.1-2.1,2.7c0,1.1,0.5,2.6,2.2,2.6c0.7,0,1.2-0.3,1.6-1l0,0c0,1.5-0.1,2.7-1.8,2.7 c-0.6,0-1.1-0.2-1.5-0.4l-0.1,0.6c0.3,0.1,0.9,0.3,1.6,0.3c1.8,0,2.4-1.2,2.4-2.6L160,3.5L160,3.5z M163.5,10.8h0.6v-3l0,0 c0.3,0.7,0.8,1,1.6,1c1.4,0,2.1-1.2,2.1-2.7c0-1.6-0.6-2.7-2.1-2.7c-1.1,0-1.5,0.8-1.7,1.1l0,0V3.6h-0.6L163.5,10.8L163.5,10.8z M167.2,6.1c0,1-0.3,2.2-1.5,2.2c-1.1,0-1.5-1.2-1.5-2.2c0-0.9,0.4-2.2,1.5-2.2C166.9,3.9,167.2,5.1,167.2,6.1L167.2,6.1z M173.4,3.5h-0.6v2.9c0,0.9-0.4,1.9-1.5,1.9c-0.9,0-1.2-0.6-1.2-1.6V3.5h-0.6v3.3c0,1.1,0.5,2,1.8,2c1.1,0,1.5-0.6,1.7-1l0,0v0.9 h0.6c0-0.4,0-0.8,0-1.2v-4H173.4z M175.1,8.7h0.6V7.8l0,0c0.3,0.7,0.9,0.9,1.6,0.9c1.4,0,2.1-1.2,2.1-2.7c0-1.6-0.6-2.7-2.1-2.7 c-1,0-1.5,0.7-1.6,1l0,0V1h-0.6V8.7z M178.8,6.1c0,1-0.3,2.2-1.5,2.2c-1.1,0-1.5-1.2-1.5-2.2c0-0.9,0.4-2.2,1.5-2.2 C178.5,3.9,178.8,5.1,178.8,6.1L178.8,6.1z M180.9,8.7h0.6V1h-0.6V8.7z M183.3,8.7h0.6V3.5h-0.6V8.7z M183.3,2.1h0.6V1.2h-0.6V2.1z M189.1,3.6c-0.2-0.1-0.6-0.2-1.3-0.2c-1.5,0-2.6,1.1-2.6,2.7c0,1.4,0.8,2.7,2.5,2.7c0.5,0,0.9,0,1.3-0.2l0.1-0.6 c-0.4,0.1-0.8,0.2-1.2,0.2c-1.2,0-1.9-1-1.9-2.2c0-1.3,0.7-2.2,1.9-2.2c0.3,0,0.8,0.1,1.1,0.3L189.1,3.6z M192.6,8.7h0.6V4h1.2V3.5 h-1.2V3c0-0.6-0.1-1.6,0.8-1.6c0.2,0,0.4,0,0.5,0.1V0.9c-0.1-0.1-0.4-0.1-0.6-0.1c-1.3,0-1.4,1.1-1.4,2.2v0.4h-1V4h1L192.6,8.7 L192.6,8.7z M199.7,3.5h-0.6v2.9c0,0.9-0.4,1.9-1.5,1.9c-0.9,0-1.2-0.6-1.2-1.6V3.5h-0.6v3.3c0,1.1,0.5,2,1.8,2c1.1,0,1.5-0.6,1.7-1 l0,0v0.9h0.6c0-0.4,0-0.8,0-1.2v-4H199.7z M201.4,8.7h0.6V5.8c0-0.9,0.4-1.9,1.5-1.9c0.9,0,1.2,0.6,1.2,1.6v3.1h0.6V5.3 c0-1.1-0.5-2-1.8-2c-1.1,0-1.5,0.6-1.7,1l0,0V3.5h-0.6c0,0.4,0,0.8,0,1.2v4H201.4z M211.3,1h-0.6v3.3l0,0c-0.1-0.3-0.6-1-1.6-1 c-1.5,0-2.1,1.1-2.1,2.7c0,1.5,0.7,2.7,2.1,2.7c0.7,0,1.3-0.3,1.6-0.9l0,0v0.8h0.6V1z M207.6,6.1c0-1,0.3-2.2,1.5-2.2 c1.1,0,1.5,1.2,1.5,2.2c0,0.9-0.4,2.2-1.5,2.2C207.9,8.2,207.6,7.1,207.6,6.1L207.6,6.1z M213,8.7h0.6V3.5H213V8.7z M213,2.1h0.6 V1.2H213V2.1z M215.4,8.7h0.6V5.8c0-0.9,0.4-1.9,1.5-1.9c0.9,0,1.2,0.6,1.2,1.6v3.1h0.6V5.3c0-1.1-0.5-2-1.8-2c-1.1,0-1.5,0.6-1.7,1 l0,0V3.5h-0.6c0,0.4,0,0.8,0,1.2v4H215.4z M221.5,6.1c0-1,0.3-2.2,1.5-2.2s1.5,0.9,1.5,2.2c0,0.9-0.4,2-1.6,2 C221.9,8.1,221.5,7.1,221.5,6.1L221.5,6.1z M225.2,3.5h-0.6v0.6l0,0c-0.5-0.6-0.9-0.7-1.6-0.7c-1.5,0-2.1,1.1-2.1,2.7 c0,1.1,0.5,2.6,2.2,2.6c0.7,0,1.2-0.3,1.6-1l0,0c0,1.5-0.1,2.7-1.8,2.7c-0.6,0-1.1-0.2-1.5-0.4l-0.1,0.6c0.3,0.1,0.9,0.3,1.6,0.3 c1.8,0,2.4-1.2,2.4-2.6L225.2,3.5L225.2,3.5z M228.7,8.7h0.6V7.8l0,0c0.3,0.7,0.9,0.9,1.6,0.9c1.4,0,2.1-1.2,2.1-2.7 c0-1.6-0.6-2.7-2.1-2.7c-1,0-1.5,0.7-1.6,1l0,0V1h-0.6V8.7z M232.4,6.1c0,1-0.3,2.2-1.5,2.2c-1.1,0-1.5-1.2-1.5-2.2 c0-0.9,0.4-2.2,1.5-2.2C232.1,3.9,232.4,5.1,232.4,6.1L232.4,6.1z M234.5,3.5h-0.7l1.8,5.2l-0.1,0.5c-0.2,0.7-0.4,1.1-0.9,1.1 c-0.2,0-0.4,0-0.5-0.1l-0.1,0.5c0.2,0.1,0.5,0.1,0.7,0.1c0.7,0,1.1-0.7,1.3-1.4l2.1-6h-0.7l-1.5,4.3l0,0L234.5,3.5L234.5,3.5z M5.2,29.1l0.1,1.7l-3-0.8l0,0L5.2,29.1z M8,28.3v-1.8l-7.1,2.6l0,1.9l7.3,2.2l-0.1-1.6L6.5,31l-0.1-2.3L8,28.3L8,28.3z M3.1,21.1 l0.2-0.5c0.3-0.9,0.9-0.8,1.2-0.7c0.5,0.2,0.8,0.6,0.6,1.2l-0.2,0.5L3.1,21.1z M8.4,24.5l0.5-1.6L6.1,22c0.2-0.6,0.3-0.8,1.3-0.8 l2,0.1l0.5-1.7H7.4c-0.9,0-1.2,0.1-1.5,0.6l0,0c0.2-1.4-1-1.8-1.2-1.9c-1.3-0.4-2.1,0.4-2.4,1.5l-0.8,2.5L8.4,24.5L8.4,24.5z M11.4,17.4l1-1.4l-4.8-3.4l0.9-1.3l-1.1-0.7l-2.8,4l1.1,0.7L6.5,14L11.4,17.4 M12.8,5.7c-0.6,0.3-1,0.5-1.5,0.9 c-1.9,1.6-0.7,3-0.6,3.2c1.7,2,3.4-0.4,4.3,0.7c0.4,0.5,0.2,1-0.3,1.3c-0.5,0.4-1,0.5-1.5,0.7l0.8,1.1c0.3-0.1,1-0.5,1.7-1 c1.1-0.9,1.4-2.3,0.5-3.3c-1.6-2-3.4,0.3-4.3-0.7c-0.3-0.4-0.2-0.9,0.2-1.2c0.3-0.3,0.9-0.5,1.3-0.6L12.8,5.7 M25.8,0.5 c-0.3-0.1-0.9-0.2-1.9,0.1c-1.4,0.3-2.9,1.8-2.3,4.3c0.5,2.2,2.2,3.4,4.1,2.9c0.9-0.2,1.4-0.5,1.7-0.7L27,5.7 c-0.1,0.1-0.5,0.5-1.4,0.7c-1.1,0.2-2.1-0.5-2.4-1.9s0.2-2.5,1.3-2.7c0.8-0.2,1.2,0,1.5,0.1L25.8,0.5 M31.4,3.7 C31.5,2.4,32,1.3,33,1.4s1.2,1.3,1,2.7s-0.7,2.5-1.6,2.3C31.4,6.3,31.2,5.1,31.4,3.7 M29.6,3.5c-0.3,2.1,0.5,3.8,2.6,4.1 c2.1,0.3,3.2-1.2,3.5-3.3s-0.5-3.8-2.6-4.1C31.1-0.1,29.9,1.4,29.6,3.5 M38.2,6.1c-0.8,1.6-0.3,2.9,1.1,3.6c1.5,0.7,2.8,0.4,3.6-1.2 L45,4.4l-1.5-0.8l-2.2,4.3c-0.3,0.6-0.8,0.9-1.4,0.6c-0.6-0.3-0.7-0.8-0.3-1.5l2.2-4.3l-1.5-0.8L38.2,6.1 M43.4,12l1,1.1l3.8-3.6 l0,0l-2.3,5.1l1.4,1.4l5.2-5l-1-1.1l-3.6,3.5l0,0l2.1-5L48.6,7L43.4,12 M56.8,19c0-0.3,0-0.9-0.5-1.9c-0.6-1.3-2.4-2.5-4.8-1.3 c-2.1,1-2.8,2.9-1.9,4.7c0.4,0.8,0.8,1.3,1,1.5l1.3-0.7c-0.1-0.1-0.6-0.4-1-1.2c-0.5-1,0-2.1,1.3-2.7s2.5-0.4,3,0.6 c0.3,0.7,0.3,1.2,0.3,1.5L56.8,19 M51,24.5l0.3,1.7l7.1-1.3l-0.3-1.7L51,24.5 M51.5,28.8l-0.3,4.1l1.3,0.1l0.2-2.4l5.9,0.4l0.1-1.7 L51.5,28.8 M7.3,45.6l2,2.4l0.5-0.4l-1.6-1.9l2.2-1.8l1.5,1.8l0.5-0.4l-1.5-1.8l2-1.7l1.6,1.9l0.5-0.4L13,41L7.3,45.6 M12.4,51 l0.5,0.3l3.6-5.3l0,0l-1,7l0.7,0.5l4-6l-0.5-0.3l-3.6,5.3l0,0l1.1-7L16.5,45L12.4,51 M23.6,52.9l1.2,0.4l-0.7,2.4 c-0.4,0.1-0.7,0-1-0.1c-1.8-0.5-1.9-2.4-1.6-3.7c0.6-2.2,2.2-2.6,3.2-2.3c0.5,0.2,1.1,0.6,1.3,0.8l0.2-0.7c-0.2-0.2-0.8-0.6-1.4-0.8 c-1.9-0.6-3.5,0.8-4,2.6c-0.4,1.3-0.4,3.8,2,4.5c0.6,0.2,1.1,0.2,1.7,0.1l1-3.4l-1.9-0.5L23.6,52.9 M28.9,56.9h3v-0.6h-2.4v-6.6 h-0.6V56.9 M35.6,49.6L35.6,49.6l2.3,3.4l-2.4,0.7L35.6,49.6z M34.8,56.6l0.6-0.2l0.1-2.1l2.8-0.8l1.2,1.7l0.7-0.2l-4.3-6.3L35.1,49 L34.8,56.6L34.8,56.6z M43.2,53.5l0.5-0.3l-3.5-5.3l0,0l6,3.7l0.7-0.4L43,45l-0.5,0.3l3.5,5.4l0,0L40,47l-0.7,0.4L43.2,53.5 M45.7,43.1l0.3-0.4c1.5-1.9,3.1-0.9,4-0.2c1.4,1.1,1.8,2.5,0.8,3.8l-0.4,0.5L45.7,43.1z M50.5,47.7l0.7-0.9c1.4-1.8,0.8-3.7-0.9-5 c-1.8-1.4-3.5-1.3-4.9,0.6l-0.6,0.7L50.5,47.7L50.5,47.7z M73.4,57.1h0.7v-57h-0.7V57.1z"/></svg>
3
+ </template>
4
+
5
+ <script>
6
+ export default {
7
+
8
+ }
9
+ </script>
10
+
11
+ <style>
12
+
13
+ </style>
@@ -1,6 +1,6 @@
1
- import AlleyneIcon from './AlleyneIcon'
2
- import BanffIcon from './BanffIcon'
3
- import CouncilIcon from './CouncilIcon'
1
+ import AlleyneIcon from './alleyne'
2
+ import BanffIcon from './banff'
3
+ import CouncilIcon from './council'
4
4
 
5
5
  export {
6
6
  AlleyneIcon,
@@ -1,7 +1,7 @@
1
- import BarbicanIcon from './BarbicanIcon'
2
- import ContributorIcon from './ContributorIcon'
3
- import OtherIcon from './OtherIcon'
4
- import PinIcon from './PinIcon'
1
+ import BarbicanIcon from './barbican'
2
+ import ContributorIcon from './contributor'
3
+ import OtherIcon from './other'
4
+ import PinIcon from './pin'
5
5
 
6
6
  export {
7
7
  BarbicanIcon,
File without changes
File without changes
File without changes