barbican-reset 2.40.0 → 2.42.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.
Files changed (51) hide show
  1. package/README.md +21 -21
  2. package/components/{account_title.vue → AccountTitle.vue} +6 -9
  3. package/components/{br_alert.vue → BrAlert.vue} +1 -2
  4. package/components/BrAnchor.vue +34 -0
  5. package/components/BrButton/dot_typing.vue +60 -0
  6. package/components/{br_button → BrButton}/remove_ticket.vue +8 -19
  7. package/components/{br_button.vue → BrButton.vue} +6 -2
  8. package/components/{br_confirm_done.vue → BrConfirmDone.vue} +3 -3
  9. package/components/{br_confirm_email.vue → BrConfirmEmail.vue} +3 -3
  10. package/components/{br_container.vue → BrContainer.vue} +30 -21
  11. package/components/{br_footer/lower.vue → BrFooterLower.vue} +0 -6
  12. package/components/{br_footer/upper.vue → BrFooterUpper.vue} +6 -7
  13. package/components/{br_form_block.vue → BrFormBlock.vue} +0 -8
  14. package/components/BrFormPassword.vue +67 -0
  15. package/components/{br_form_row.vue → BrFormRow.vue} +4 -4
  16. package/components/BrFormUpdate.vue +18 -0
  17. package/components/{br_loader.vue → BrLoader.vue} +1 -1
  18. package/components/{br_skiplink.vue → BrSkiplink.vue} +0 -1
  19. package/components/{br_wrap.vue → BrWrap.vue} +4 -4
  20. package/components/{event_summary.vue → EventSummary.vue} +34 -24
  21. package/components/{fluid_iframe.vue → FluidIframe.vue} +0 -1
  22. package/components/{see_inside.vue → SeeInside.vue} +48 -30
  23. package/components/{video_content.vue → VideoContent.vue} +18 -27
  24. package/icons/account/membership.vue +0 -6
  25. package/icons/account/orders.vue +0 -6
  26. package/icons/account/payment.vue +0 -6
  27. package/icons/account/personal.vue +0 -6
  28. package/icons/account/support.vue +0 -6
  29. package/icons/account/video.vue +0 -6
  30. package/icons/arrow_back.vue +9 -8
  31. package/icons/arrow_forward.vue +7 -8
  32. package/icons/back_arrow.vue +6 -7
  33. package/icons/city_of_london_lockup.vue +14 -9
  34. package/icons/information.vue +4 -8
  35. package/icons/password/hide.vue +0 -6
  36. package/icons/password/show.vue +0 -6
  37. package/icons/stream/live.vue +9 -8
  38. package/icons/wheelchair.vue +15 -9
  39. package/index.js +24 -38
  40. package/package.json +1 -1
  41. package/scss/_br-wrap.scss +3 -4
  42. package/scss/index.scss +0 -4
  43. package/components/br_anchor.vue +0 -35
  44. package/components/br_button/dot_typing.vue +0 -43
  45. package/components/br_form_password.vue +0 -69
  46. package/components/br_form_update.vue +0 -12
  47. /package/components/{br_button → BrButton}/components.js +0 -0
  48. /package/components/{br_card.vue → BrCard.vue} +0 -0
  49. /package/components/{br_card_sub_title.vue → BrCardSubTitle.vue} +0 -0
  50. /package/components/{br_card_text.vue → BrCardText.vue} +0 -0
  51. /package/components/{br_card_title.vue → BrCardTitle.vue} +0 -0
@@ -5,21 +5,31 @@
5
5
  <div :class="$style.title">{{ data.title }}</div>
6
6
  <div :class="$style.date_time">{{ data.date_formatted }}</div>
7
7
  <div :class="$style.venue">{{ data.venue }}</div>
8
- <br-button v-if="!basket && hasSeeInside" variant="link" :class="$style.show_see_inside" @click="showSeeInside = !showSeeInside">See inside</br-button>
8
+ <br-button
9
+ v-if="!basket && hasSeeInside"
10
+ variant="link"
11
+ :class="$style.show_SeeInside"
12
+ @click="showSeeInside = !showSeeInside"
13
+ >See inside</br-button
14
+ >
9
15
  </div>
10
- <div :class="$style.see_inside" v-if="!basket && hasSeeInside && showSeeInside">
11
- <see-inside v-if="!basket && hasSeeInside" :data="data.see_inside" @closeSeeInside="showSeeInside = !showSeeInside"></see-inside>
16
+ <div
17
+ :class="$style.SeeInside"
18
+ v-if="!basket && hasSeeInside && showSeeInside"
19
+ >
20
+ <see-inside
21
+ v-if="!basket && hasSeeInside"
22
+ :data="data.SeeInside"
23
+ @closeSeeInside="showSeeInside = !showSeeInside"
24
+ ></see-inside>
12
25
  </div>
13
26
  </div>
14
-
15
27
  </template>
16
28
 
17
29
  <script>
18
-
19
- import SeeInside from './see_inside';
30
+ import SeeInside from "./SeeInside";
20
31
 
21
32
  export default {
22
- name: 'EventSummary',
23
33
  components: { SeeInside },
24
34
  props: {
25
35
  data: {
@@ -33,19 +43,19 @@ export default {
33
43
  },
34
44
  data() {
35
45
  return {
36
- showSeeInside: false
37
- }
46
+ showSeeInside: false,
47
+ };
38
48
  },
39
49
  computed: {
40
50
  wrapperClasses() {
41
51
  return [
42
- this.$style.event_summary,
43
- this.basket ? this.$style.in_basket : ''
44
- ]
52
+ this.$style.EventSummary,
53
+ this.basket ? this.$style.in_basket : "",
54
+ ];
45
55
  },
46
56
  hasSeeInside() {
47
- return this.data.see_inside.length > 0;
48
- }
57
+ return this.data.SeeInside.length > 0;
58
+ },
49
59
  },
50
60
  };
51
61
  </script>
@@ -83,13 +93,13 @@ export default {
83
93
  @include subtitle;
84
94
  }
85
95
 
86
- .show_see_inside {
96
+ .show_SeeInside {
87
97
  margin-top: 0.5rem;
88
98
  margin-bottom: 0.5rem;
89
99
  }
90
100
 
91
- .event_summary {
92
- @include media-breakpoint-up(md) {
101
+ .EventSummary {
102
+ @include medium-up {
93
103
  display: grid;
94
104
  grid-template-columns: 20rem auto;
95
105
  grid-template-rows: auto auto auto;
@@ -105,28 +115,28 @@ export default {
105
115
  grid-row-start: 1;
106
116
  grid-row-end: 4;
107
117
  border: 1px solid $c-grey-l87;
108
- border-radius: $border-radius-lg;
118
+ border-radius: $br-border-radius-lg;
109
119
  max-width: 100%;
110
120
  width: 100%;
111
121
  margin-bottom: $gap-instance;
112
- @include media-breakpoint-up(md) {
122
+
123
+ @include medium-up {
113
124
  margin-bottom: 0;
114
125
  }
115
126
  }
116
127
 
117
128
  .event_info {
118
- grid-row-end:2;
129
+ grid-row-end: 2;
119
130
  }
120
131
 
121
- .see_inside {
132
+ .SeeInside {
122
133
  grid-column-start: 1;
123
134
  grid-column-end: 3;
124
135
  margin-top: 1rem;
125
- @include media-breakpoint-up(lg) {
136
+
137
+ @include large-up {
126
138
  margin-top: 0;
127
139
  grid-column-start: 2;
128
-
129
140
  }
130
141
  }
131
-
132
142
  </style>
@@ -13,7 +13,6 @@
13
13
 
14
14
  <script>
15
15
  export default {
16
- name: "FluidIframe",
17
16
  props: {
18
17
  src: {
19
18
  type: String,
@@ -1,47 +1,63 @@
1
1
  <template>
2
- <div :class="$style.see_inside">
3
- <div :class="$style.see_inside_content">
2
+ <div :class="$style.SeeInside">
3
+ <div :class="$style.SeeInside_content">
4
4
  <div :class="$style.venue_sections">
5
5
  <div :class="$style.sections_title">
6
6
  <span v-if="multipleSeeInside">Section:</span>
7
- <b-button
8
- variant="exit"
9
- @click="$emit('closeSeeInside')"
10
- :class="$style.close_mobile"
7
+ <br-button
8
+ variant="exit"
9
+ @click="$emit('closeSeeInside')"
10
+ :class="$style.close_mobile"
11
11
  >
12
12
  <close-icon />
13
- </b-button>
13
+ </br-button>
14
14
  </div>
15
- <br-button variant="link" :class="{[$style.venue_section]: true, [$style.venue_section_active]: visibleMapIndex == index}" v-if="multipleSeeInside" v-for="(item, index) in data" :key="'section-' + index" @click="visibleMapIndex = index">{{item.title}}</br-button>
16
- <b-button
17
- @click="$emit('closeSeeInside')"
18
- variant="exit"
19
- :class="$style.close_desktop"
15
+ <template v-if="multipleSeeInside">
16
+ <br-button
17
+ variant="link"
18
+ :class="{
19
+ [$style.venue_section]: true,
20
+ [$style.venue_section_active]: visibleMapIndex == index,
21
+ }"
22
+ v-for="(item, index) in data"
23
+ :key="'section-' + index"
24
+ @click="visibleMapIndex = index"
25
+ >{{ item.title }}</br-button
26
+ >
27
+ </template>
28
+
29
+ <br-button
30
+ @click="$emit('closeSeeInside')"
31
+ variant="exit"
32
+ :class="$style.close_desktop"
20
33
  >
21
34
  <close-icon />
22
- </b-button>
35
+ </br-button>
23
36
  </div>
24
37
  <div v-for="(item, index) in data" :key="index">
25
- <div :class="$style.see_inside_map" v-if="(visibleMapIndex == index) || !multipleSeeInside" v-html="item.markup"></div>
38
+ <div
39
+ :class="$style.SeeInside_map"
40
+ v-if="visibleMapIndex == index || !multipleSeeInside"
41
+ v-html="item.markup"
42
+ ></div>
26
43
  </div>
27
44
  </div>
28
-
29
45
  </div>
30
46
  </template>
31
47
 
32
48
  <script>
33
-
49
+ import BrButton from "./BrButton";
34
50
  import { CloseIcon } from "barbican-reset/icons/stream";
35
51
 
36
52
  export default {
37
- name: 'SeeInside',
38
53
  components: {
39
- CloseIcon
54
+ BrButton,
55
+ CloseIcon,
40
56
  },
41
57
  data() {
42
58
  return {
43
59
  visibleMapIndex: null,
44
- }
60
+ };
45
61
  },
46
62
  props: {
47
63
  data: {
@@ -54,15 +70,14 @@ export default {
54
70
  return this.data.length > 1;
55
71
  },
56
72
  },
57
- }
73
+ };
58
74
  </script>
59
75
 
60
76
  <style lang="scss" module>
61
-
62
- .see_inside_content {
77
+ .SeeInside_content {
63
78
  padding: 1rem;
64
- border: 1px solid $c-grey-l87;;
65
- border-radius: $border-radius;
79
+ border: 1px solid $c-grey-l87;
80
+ border-radius: $br-border-radius;
66
81
  }
67
82
 
68
83
  .sections_title {
@@ -70,13 +85,15 @@ export default {
70
85
  span {
71
86
  padding-top: 2px; // To line up with the button text
72
87
  width: 100%;
73
- @include media-breakpoint-up(sm) {
88
+
89
+ @include small-up {
74
90
  width: auto;
75
91
  }
76
92
  }
77
93
  .close_mobile {
78
94
  margin-left: auto;
79
- @include media-breakpoint-up(sm) {
95
+
96
+ @include small-up {
80
97
  display: none;
81
98
  }
82
99
  }
@@ -87,7 +104,8 @@ export default {
87
104
  gap: 1rem;
88
105
  min-height: 28px; // Due to 28 px close icon, to prevent height change when icon shown.
89
106
  flex-direction: column;
90
- @include media-breakpoint-up(sm) {
107
+
108
+ @include small-up {
91
109
  flex-direction: row;
92
110
  }
93
111
 
@@ -101,16 +119,16 @@ export default {
101
119
 
102
120
  .close_desktop {
103
121
  margin-left: auto;
104
- @include media-breakpoint-down(sm) {
122
+
123
+ @include small-down {
105
124
  display: none;
106
125
  }
107
126
  }
108
127
 
109
- .see_inside_map {
128
+ .SeeInside_map {
110
129
  margin-top: 1rem;
111
130
  iframe {
112
131
  width: 100%;
113
132
  }
114
133
  }
115
-
116
134
  </style>
@@ -1,15 +1,13 @@
1
1
  <template>
2
-
3
2
  <div>
4
-
5
3
  <fluid-iframe v-if="data.type === 'jwplayer'" :src="data.url" />
6
4
 
7
5
  <template v-if="data.type === 'brightcove'">
8
-
9
6
  <div v-html="data.markup" :class="$style.brightcove"></div>
10
7
 
11
- <br-alert v-if="data.isExpired" error center inline>Event has passed.</br-alert>
12
-
8
+ <br-alert v-if="data.isExpired" error center inline
9
+ >Event has passed.</br-alert
10
+ >
13
11
  </template>
14
12
 
15
13
  <h2 v-html="data.title" class="margin-bottom-1"></h2>
@@ -17,41 +15,36 @@
17
15
  <p v-html="data.lead_description"></p>
18
16
 
19
17
  <template v-if="data.long_description">
20
-
21
18
  <p v-html="data.long_description"></p>
22
-
23
19
  </template>
24
20
 
25
21
  <template v-if="data.expires">
26
-
27
22
  <p>Until {{ formatDateTime(data.expires) }}</p>
28
-
29
23
  </template>
30
24
 
31
25
  <template v-if="data.programme">
32
-
33
- <p>Read tonight's <a :href="data.programme" target="_blank">Digital Programme</a></p>
34
-
26
+ <p>
27
+ Read tonight's
28
+ <a :href="data.programme" target="_blank">Digital Programme</a>
29
+ </p>
35
30
  </template>
36
-
37
- </div>
38
-
31
+ </div>
39
32
  </template>
40
33
 
41
34
  <script>
42
- import { FluidIframe } from 'barbican-reset'
43
- import BrAlert from './br_alert'
44
- import { DateTime } from 'luxon';
35
+ import { FluidIframe } from "barbican-reset";
36
+ import BrAlert from "./BrAlert";
37
+ import { DateTime } from "luxon";
45
38
 
46
39
  export default {
47
40
  props: {
48
41
  data: {
49
- type: Object
42
+ type: Object,
50
43
  },
51
44
  concert: {
52
45
  type: Boolean,
53
46
  default: false,
54
- }
47
+ },
55
48
  },
56
49
  created() {
57
50
  if (this.concert) {
@@ -64,18 +57,16 @@ export default {
64
57
  components: { FluidIframe, BrAlert },
65
58
  methods: {
66
59
  formatDateTime(date) {
67
- return DateTime.fromISO(date).toFormat('h:mm a ccc d LLL yyyy');
68
- }
69
- }
70
- }
60
+ return DateTime.fromISO(date).toFormat("h:mm a ccc d LLL yyyy");
61
+ },
62
+ },
63
+ };
71
64
  </script>
72
65
 
73
66
  <style lang="scss" module>
74
-
75
67
  .brightcove {
76
68
  border-radius: $br-border-radius-lg;
77
69
  margin-bottom: 2rem;
78
70
  overflow: hidden;
79
71
  }
80
-
81
- </style>
72
+ </style>
@@ -10,9 +10,3 @@
10
10
  />
11
11
  </svg>
12
12
  </template>
13
-
14
- <script>
15
- export default {
16
- name: "MembershipIcon",
17
- };
18
- </script>
@@ -15,9 +15,3 @@
15
15
  <rect height="2" width="2" x="16" y="10" />
16
16
  </svg>
17
17
  </template>
18
-
19
- <script>
20
- export default {
21
- name: "OrdersIcon",
22
- };
23
- </script>
@@ -10,9 +10,3 @@
10
10
  />
11
11
  </svg>
12
12
  </template>
13
-
14
- <script>
15
- export default {
16
- name: "PaymentIcon",
17
- };
18
- </script>
@@ -10,9 +10,3 @@
10
10
  />
11
11
  </svg>
12
12
  </template>
13
-
14
- <script>
15
- export default {
16
- name: "PersonalIcon",
17
- };
18
- </script>
@@ -11,9 +11,3 @@
11
11
  />
12
12
  </svg>
13
13
  </template>
14
-
15
- <script>
16
- export default {
17
- name: "SupportIcon",
18
- };
19
- </script>
@@ -10,9 +10,3 @@
10
10
  />
11
11
  </svg>
12
12
  </template>
13
-
14
- <script>
15
- export default {
16
- name: "VideoIcon",
17
- };
18
- </script>
@@ -1,11 +1,12 @@
1
1
  <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24" width="24">
3
- <path d="M17.51 3.87L15.73 2.1 5.84 12l9.9 9.9 1.77-1.77L9.38 12l8.13-8.13z"/>
2
+ <svg
3
+ xmlns="http://www.w3.org/2000/svg"
4
+ height="24"
5
+ viewBox="0 0 24 24"
6
+ width="24"
7
+ >
8
+ <path
9
+ d="M17.51 3.87L15.73 2.1 5.84 12l9.9 9.9 1.77-1.77L9.38 12l8.13-8.13z"
10
+ />
4
11
  </svg>
5
12
  </template>
6
-
7
- <script>
8
- export default {
9
- name: 'ArrowBack'
10
- }
11
- </script>
@@ -1,11 +1,10 @@
1
1
  <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24" width="24">
3
- <polygon points="6.23,20.23 8,22 18,12 8,2 6.23,3.77 14.46,12"/>
2
+ <svg
3
+ xmlns="http://www.w3.org/2000/svg"
4
+ height="24"
5
+ viewBox="0 0 24 24"
6
+ width="24"
7
+ >
8
+ <polygon points="6.23,20.23 8,22 18,12 8,2 6.23,3.77 14.46,12" />
4
9
  </svg>
5
10
  </template>
6
-
7
- <script>
8
- export default {
9
- name: 'ArrowForward'
10
- }
11
- </script>
@@ -1,11 +1,10 @@
1
1
  <template>
2
- <svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
2
+ <svg
3
+ width="16"
4
+ height="16"
5
+ viewBox="0 0 16 16"
6
+ xmlns="http://www.w3.org/2000/svg"
7
+ >
3
8
  <path d="M16 7H3.83L9.42 1.41L8 0L0 8L8 16L9.41 14.59L3.83 9H16V7Z" />
4
9
  </svg>
5
10
  </template>
6
-
7
- <script>
8
- export default {
9
- name: 'BackArrow'
10
- }
11
- </script>
@@ -1,18 +1,23 @@
1
1
  <template>
2
- <a class="city-of-london-lockup" href="//www.cityoflondon.gov.uk" target="_blank">
2
+ <a
3
+ class="city-of-london-lockup"
4
+ href="//www.cityoflondon.gov.uk"
5
+ target="_blank"
6
+ >
3
7
  <city-of-london-logo />
4
8
  <small>
5
- The City of London<br />Corporation is the founder<br />and principal funder of<br />the Barbican Centre
9
+ The City of London<br />Corporation is the founder<br />and principal
10
+ funder of<br />the Barbican Centre
6
11
  </small>
7
12
  </a>
8
13
  </template>
9
14
 
10
15
  <script>
11
- import CityOfLondonLogo from './city_of_london'
12
- export default {
13
- name: 'CityOfLondonLockup',
16
+ import CityOfLondonLogo from "./city_of_london";
17
+
18
+ export default {
14
19
  components: {
15
- CityOfLondonLogo
16
- }
17
- }
18
- </script>
20
+ CityOfLondonLogo,
21
+ },
22
+ };
23
+ </script>
@@ -3,14 +3,10 @@
3
3
  width="16"
4
4
  height="16"
5
5
  xmlns="http://www.w3.org/2000/svg"
6
- viewBox="0 0 20 20">
6
+ viewBox="0 0 20 20"
7
+ >
7
8
  <path
8
- d="M9,15h2V9H9V15z M10,7c0.3,0,0.5-0.1,0.7-0.3S11,6.3,11,6s-0.1-0.5-0.3-0.7C10.5,5.1,10.3,5,10,5S9.5,5.1,9.3,5.3 C9.1,5.5,9,5.7,9,6s0.1,0.5,0.3,0.7S9.7,7,10,7z M10,20c-1.4,0-2.7-0.3-3.9-0.8S3.8,18,2.9,17.1s-1.6-2-2.1-3.2S0,11.4,0,10 s0.3-2.7,0.8-3.9S2,3.8,2.9,2.9s2-1.6,3.2-2.1S8.6,0,10,0s2.7,0.3,3.9,0.8s2.3,1.2,3.2,2.1s1.6,2,2.1,3.2S20,8.6,20,10 s-0.3,2.7-0.8,3.9s-1.2,2.3-2.1,3.2s-2,1.6-3.2,2.1S11.4,20,10,20z M10,18c2.2,0,4.1-0.8,5.7-2.3S18,12.2,18,10s-0.8-4.1-2.3-5.7 S12.2,2,10,2S5.9,2.8,4.3,4.3S2,7.8,2,10s0.8,4.1,2.3,5.7S7.8,18,10,18z" />
9
+ d="M9,15h2V9H9V15z M10,7c0.3,0,0.5-0.1,0.7-0.3S11,6.3,11,6s-0.1-0.5-0.3-0.7C10.5,5.1,10.3,5,10,5S9.5,5.1,9.3,5.3 C9.1,5.5,9,5.7,9,6s0.1,0.5,0.3,0.7S9.7,7,10,7z M10,20c-1.4,0-2.7-0.3-3.9-0.8S3.8,18,2.9,17.1s-1.6-2-2.1-3.2S0,11.4,0,10 s0.3-2.7,0.8-3.9S2,3.8,2.9,2.9s2-1.6,3.2-2.1S8.6,0,10,0s2.7,0.3,3.9,0.8s2.3,1.2,3.2,2.1s1.6,2,2.1,3.2S20,8.6,20,10 s-0.3,2.7-0.8,3.9s-1.2,2.3-2.1,3.2s-2,1.6-3.2,2.1S11.4,20,10,20z M10,18c2.2,0,4.1-0.8,5.7-2.3S18,12.2,18,10s-0.8-4.1-2.3-5.7 S12.2,2,10,2S5.9,2.8,4.3,4.3S2,7.8,2,10s0.8,4.1,2.3,5.7S7.8,18,10,18z"
10
+ />
9
11
  </svg>
10
12
  </template>
11
-
12
- <script>
13
- export default {
14
- name: 'Information',
15
- }
16
- </script>
@@ -5,9 +5,3 @@
5
5
  />
6
6
  </svg>
7
7
  </template>
8
-
9
- <script>
10
- export default {
11
- name: 'HidePassword'
12
- }
13
- </script>
@@ -5,9 +5,3 @@
5
5
  />
6
6
  </svg>
7
7
  </template>
8
-
9
- <script>
10
- export default {
11
- name: 'ShowPassword'
12
- }
13
- </script>
@@ -1,11 +1,12 @@
1
1
  <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24" width="24">
3
- <path d="M7.76,16.24C6.67,15.16,6,13.66,6,12s0.67-3.16,1.76-4.24l1.42,1.42C8.45,9.9,8,10.9,8,12c0,1.1,0.45,2.1,1.17,2.83 L7.76,16.24z M16.24,16.24C17.33,15.16,18,13.66,18,12s-0.67-3.16-1.76-4.24l-1.42,1.42C15.55,9.9,16,10.9,16,12 c0,1.1-0.45,2.1-1.17,2.83L16.24,16.24z M12,10c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S13.1,10,12,10z M20,12 c0,2.21-0.9,4.21-2.35,5.65l1.42,1.42C20.88,17.26,22,14.76,22,12s-1.12-5.26-2.93-7.07l-1.42,1.42C19.1,7.79,20,9.79,20,12z M6.35,6.35L4.93,4.93C3.12,6.74,2,9.24,2,12s1.12,5.26,2.93,7.07l1.42-1.42C4.9,16.21,4,14.21,4,12S4.9,7.79,6.35,6.35z"/>
2
+ <svg
3
+ xmlns="http://www.w3.org/2000/svg"
4
+ height="24"
5
+ viewBox="0 0 24 24"
6
+ width="24"
7
+ >
8
+ <path
9
+ d="M7.76,16.24C6.67,15.16,6,13.66,6,12s0.67-3.16,1.76-4.24l1.42,1.42C8.45,9.9,8,10.9,8,12c0,1.1,0.45,2.1,1.17,2.83 L7.76,16.24z M16.24,16.24C17.33,15.16,18,13.66,18,12s-0.67-3.16-1.76-4.24l-1.42,1.42C15.55,9.9,16,10.9,16,12 c0,1.1-0.45,2.1-1.17,2.83L16.24,16.24z M12,10c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S13.1,10,12,10z M20,12 c0,2.21-0.9,4.21-2.35,5.65l1.42,1.42C20.88,17.26,22,14.76,22,12s-1.12-5.26-2.93-7.07l-1.42,1.42C19.1,7.79,20,9.79,20,12z M6.35,6.35L4.93,4.93C3.12,6.74,2,9.24,2,12s1.12,5.26,2.93,7.07l1.42-1.42C4.9,16.21,4,14.21,4,12S4.9,7.79,6.35,6.35z"
10
+ />
4
11
  </svg>
5
12
  </template>
6
-
7
- <script>
8
- export default {
9
- name: "LiveIcon"
10
- };
11
- </script>
@@ -1,12 +1,18 @@
1
1
  <template>
2
- <svg width="14" height="20" viewBox="0 0 14 20" fill="none" xmlns="http://www.w3.org/2000/svg">
3
- <path d="M7 4C8.10457 4 9 3.10457 9 2C9 0.89543 8.10457 0 7 0C5.89543 0 5 0.89543 5 2C5 3.10457 5.89543 4 7 4Z" fill="black"/>
4
- <path d="M14 11V9.00001C12.46 9.02001 10.91 8.25001 9.93 7.17001L8.64 5.74001C8.47 5.55001 8.26 5.40001 8.03 5.29001C8.02 5.29001 8.02 5.28001 8.01 5.28001H8C7.65 5.08001 7.25 4.98001 6.81 5.02001C5.76 5.11001 5 6.04001 5 7.09001V13C5 14.1 5.9 15 7 15H12V20H14V14.5C14 13.4 13.1 12.5 12 12.5H9V9.05001C10.29 10.12 12.25 10.99 14 11ZM5 18C3.34 18 2 16.66 2 15C2 13.69 2.84 12.59 4 12.17V10.1C1.72 10.56 0 12.58 0 15C0 17.76 2.24 20 5 20C7.42 20 9.44 18.28 9.9 16H7.83C7.42 17.16 6.31 18 5 18Z" fill="black"/>
2
+ <svg
3
+ width="14"
4
+ height="20"
5
+ viewBox="0 0 14 20"
6
+ fill="none"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ >
9
+ <path
10
+ d="M7 4C8.10457 4 9 3.10457 9 2C9 0.89543 8.10457 0 7 0C5.89543 0 5 0.89543 5 2C5 3.10457 5.89543 4 7 4Z"
11
+ fill="black"
12
+ />
13
+ <path
14
+ d="M14 11V9.00001C12.46 9.02001 10.91 8.25001 9.93 7.17001L8.64 5.74001C8.47 5.55001 8.26 5.40001 8.03 5.29001C8.02 5.29001 8.02 5.28001 8.01 5.28001H8C7.65 5.08001 7.25 4.98001 6.81 5.02001C5.76 5.11001 5 6.04001 5 7.09001V13C5 14.1 5.9 15 7 15H12V20H14V14.5C14 13.4 13.1 12.5 12 12.5H9V9.05001C10.29 10.12 12.25 10.99 14 11ZM5 18C3.34 18 2 16.66 2 15C2 13.69 2.84 12.59 4 12.17V10.1C1.72 10.56 0 12.58 0 15C0 17.76 2.24 20 5 20C7.42 20 9.44 18.28 9.9 16H7.83C7.42 17.16 6.31 18 5 18Z"
15
+ fill="black"
16
+ />
5
17
  </svg>
6
18
  </template>
7
-
8
- <script>
9
- export default {
10
- name: 'WheelchairIcon'
11
- }
12
- </script>