@magicgol/polyjuice 0.17.1 → 0.18.2

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@magicgol/polyjuice",
3
- "version": "0.17.1",
3
+ "version": "0.18.2",
4
4
  "scripts": {
5
5
  "serve": "vue-cli-service serve",
6
6
  "build": "vue-cli-service build",
@@ -18,4 +18,7 @@ $palette: (
18
18
  // LIVE
19
19
  'online': #00b669,
20
20
  'offline': #ea7203,
21
+ // OWNERSHIP
22
+ 'owned': #d81159,
23
+ 'opponent': #116dd8,
21
24
  );
@@ -0,0 +1,10 @@
1
+ /* eslint-disable */
2
+ var icon = require('vue-svgicon')
3
+ icon.register({
4
+ 'hand-down': {
5
+ width: 16,
6
+ height: 16,
7
+ viewBox: '0 0 20 20',
8
+ data: '<path pid="0" d="M16.417.833H4.747a2.75 2.75 0 00-2.704 2.255L.88 9.505a2.75 2.75 0 002.704 3.245h4.18l-.513 1.311a3.786 3.786 0 003.566 5.106.917.917 0 00.834-.541l2.612-5.876h2.155a2.75 2.75 0 002.75-2.75V3.583a2.75 2.75 0 00-2.75-2.75zM12.75 11.641l-2.493 5.61a1.953 1.953 0 01-1.265-2.548l.485-1.311a1.833 1.833 0 00-1.714-2.475h-4.18a.917.917 0 01-.706-.33.916.916 0 01-.21-.752L3.83 3.418a.917.917 0 01.916-.751h8.003v8.974zm4.583-1.64a.917.917 0 01-.916.916h-1.834v-8.25h1.834a.917.917 0 01.916.917V10z" _fill="#EC4141"/>'
9
+ }
10
+ })
@@ -0,0 +1,10 @@
1
+ /* eslint-disable */
2
+ var icon = require('vue-svgicon')
3
+ icon.register({
4
+ 'hand-up': {
5
+ width: 16,
6
+ height: 16,
7
+ viewBox: '0 0 20 20',
8
+ data: '<path pid="0" d="M19.3 8.08A3 3 0 0017 7h-4.56L13 5.57A4.13 4.13 0 009.11 0a1 1 0 00-.91.59L5.35 7H3a3 3 0 00-3 3v7a3 3 0 003 3h12.73a3 3 0 002.95-2.46l1.27-7a3 3 0 00-.65-2.46zM5 18H3a1 1 0 01-1-1v-7a1 1 0 011-1h2v9zm13-7.82l-1.27 7a1 1 0 01-1 .82H7V8.21l2.72-6.12a2.11 2.11 0 011.38 2.78l-.53 1.43A2 2 0 0012.44 9H17a1 1 0 01.77.36 1.001 1.001 0 01.23.82z" _fill="#fff"/>'
9
+ }
10
+ })
@@ -2,6 +2,8 @@
2
2
  require('./check-with-circle')
3
3
  require('./facebook')
4
4
  require('./google')
5
+ require('./hand-down')
6
+ require('./hand-up')
5
7
  require('./magic-coin')
6
8
  require('./message')
7
9
  require('./soccer-ball')
@@ -0,0 +1,56 @@
1
+ import MgHPlaceholder from './HPlaceholder.vue';
2
+
3
+ // More on default export: https://storybook.js.org/docs/vue/writing-stories/introduction#default-export
4
+ export default {
5
+ title: 'Footballer/HPlaceholder',
6
+ component: MgHPlaceholder,
7
+ // More on argTypes: https://storybook.js.org/docs/vue/api/argtypes
8
+ argTypes: {
9
+ ownership: {
10
+ control: { type: 'select' },
11
+ options: ['owned', 'opponent'],
12
+ defaultValue: 'owned'
13
+ },
14
+ default: {
15
+ description: "The default Vue slot",
16
+ control: {
17
+ type: 'text',
18
+ },
19
+ table: {
20
+ category: 'Slots',
21
+ type: {
22
+ summary: 'html',
23
+ },
24
+ }
25
+ },
26
+ },
27
+ };
28
+
29
+ // More on component templates: https://storybook.js.org/docs/vue/writing-stories/introduction#using-args
30
+ const Template = (args, { argTypes }) => ({
31
+ props: Object.keys(argTypes),
32
+ components: { MgHPlaceholder },
33
+ template: `<mg-h-placeholder @click="$emit('click')" v-bind="$props">
34
+ <template v-if="${'default' in args}" v-slot>${args.default}</template>
35
+ </mg-h-placeholder>`,
36
+ });
37
+
38
+ export const Default = Template.bind({});
39
+ // More on args: https://storybook.js.org/docs/vue/writing-stories/args
40
+ Default.args = {
41
+ default: '<div>This is a horizontal placeholder.</div><div>What do you think about?</div>'
42
+ };
43
+
44
+ export const Owned = Template.bind({});
45
+ // More on args: https://storybook.js.org/docs/vue/writing-stories/args
46
+ Owned.args = {
47
+ ownership: 'owned',
48
+ default: '<div>This is a horizontal placeholder.</div><div>What do you think about?</div>',
49
+ };
50
+
51
+ export const Opponent = Template.bind({});
52
+ // More on args: https://storybook.js.org/docs/vue/writing-stories/args
53
+ Opponent.args = {
54
+ ownership: 'opponent',
55
+ default: '<div>This is a horizontal placeholder.</div><div>What do you think about?</div>',
56
+ };
@@ -0,0 +1,64 @@
1
+ <template>
2
+ <div
3
+ class="d-flex align-items-center rounded px-3"
4
+ v-bind:class="classes"
5
+ >
6
+ <div class="flex-fill"><slot></slot></div>
7
+ </div>
8
+ </template>
9
+
10
+ <script>
11
+ export default {
12
+ name: 'mg-h-placeholder',
13
+
14
+ props: {
15
+ ownership: {
16
+ type: String,
17
+ default: 'owned',
18
+ validator: function (value) {
19
+ return ['owned', 'opponent'].indexOf(value) !== -1;
20
+ },
21
+ },
22
+ },
23
+
24
+ computed: {
25
+ classes() {
26
+ return {
27
+ 'mg-h-placeholder': true,
28
+ 'mg-h-placeholder--ownership-owned': this.ownership === 'owned',
29
+ 'mg-h-placeholder--ownership-opponent': this.ownership === 'opponent',
30
+ };
31
+ },
32
+ },
33
+
34
+ methods: {
35
+ onClick() {
36
+ this.$emit('click');
37
+ },
38
+ },
39
+ };
40
+ </script>
41
+
42
+ <style lang="scss">
43
+ @import '../../../assets/palette';
44
+
45
+ .mg-h-placeholder {
46
+ background: white;
47
+ border: 2px dashed;
48
+ color: #777777;
49
+ font-family: 'Ubuntu', sans-serif;
50
+ font-size: 1rem;
51
+ font-weight: 500;
52
+ height: 3.5rem;
53
+
54
+ &--ownership {
55
+ &-owned {
56
+ border-color: rgba(map-get($palette, 'owned'), 0.5);
57
+ }
58
+
59
+ &-opponent {
60
+ border-color: rgba(map-get($palette, 'opponent'), 0.5);
61
+ }
62
+ }
63
+ }
64
+ </style>
@@ -6,9 +6,14 @@ export default {
6
6
  component: MgIconBadge,
7
7
  // More on argTypes: https://storybook.js.org/docs/vue/api/argtypes
8
8
  argTypes: {
9
- level: {
9
+ size: {
10
10
  control: { type: 'select' },
11
- options: ['normal', 'club'],
11
+ options: ['normal', 'large'],
12
+ defaultValue: 'normal'
13
+ },
14
+ context: {
15
+ control: { type: 'select' },
16
+ options: ['normal', 'club', 'success', 'failure'],
12
17
  defaultValue: 'normal'
13
18
  },
14
19
  },
@@ -25,13 +30,9 @@ export const Default = Template.bind({});
25
30
  // More on args: https://storybook.js.org/docs/vue/writing-stories/args
26
31
  Default.args = {
27
32
  icon: 'message',
28
- level: 'normal',
33
+ context: 'normal',
34
+ size: 'normal',
35
+ active: false
29
36
  };
30
37
 
31
- export const Club = Template.bind({});
32
- // More on args: https://storybook.js.org/docs/vue/writing-stories/args
33
- Club.args = {
34
- icon: 'star-c',
35
- level: 'club',
36
- };
37
38
 
@@ -17,21 +17,37 @@ export default {
17
17
  icon: {
18
18
  type: String
19
19
  },
20
- level: {
20
+ size: {
21
21
  type: String,
22
22
  default: 'normal',
23
23
  validator: function (value) {
24
- return ['normal', 'club'].indexOf(value) !== -1;
24
+ return ['normal', 'large'].indexOf(value) !== -1;
25
25
  },
26
- }
26
+ },
27
+ context: {
28
+ type: String,
29
+ default: 'normal',
30
+ validator: function (value) {
31
+ return ['normal', 'club', 'success', 'failure'].indexOf(value) !== -1;
32
+ },
33
+ },
34
+ active: {
35
+ type: Boolean,
36
+ default: false,
37
+ },
27
38
  },
28
39
 
29
40
  computed: {
30
41
  classes() {
31
42
  return {
32
43
  'mg-icon-badge': true,
33
- 'mg-icon-badge--club': this.level === 'club',
34
- 'mg-icon-badge--normal': this.level === 'normal',
44
+ 'mg-icon-badge--active': this.active === true,
45
+ 'mg-icon-badge--size-normal': this.size === 'normal',
46
+ 'mg-icon-badge--size-large': this.size === 'large',
47
+ 'mg-icon-badge--context-club': this.context === 'club',
48
+ 'mg-icon-badge--context-normal': this.context === 'normal',
49
+ 'mg-icon-badge--context-success': this.context === 'success',
50
+ 'mg-icon-badge--context-failure': this.context === 'failure',
35
51
  };
36
52
  },
37
53
  },
@@ -42,28 +58,99 @@ export default {
42
58
  @import '../../../assets/palette';
43
59
 
44
60
  .mg-icon-badge {
45
- height: 2rem;
46
- min-width: 2rem;
47
- width: 2rem;
61
+ &--size {
62
+ &-normal {
63
+ height: 2rem;
64
+ min-width: 2rem;
65
+ width: 2rem;
66
+
67
+ svg {
68
+ height: 1rem;
69
+ width: 1rem;
70
+ }
71
+ }
72
+
73
+ &-large {
74
+ height: 2.5rem;
75
+ min-width: 2.5rem;
76
+ width: 2.5rem;
48
77
 
49
- svg {
50
- height: 1rem;
51
- width: 1rem;
78
+ svg {
79
+ height: 1.25rem;
80
+ width: 1.25rem;
81
+ }
82
+ }
52
83
  }
53
84
 
54
- &--normal {
55
- background-color: #f5f5f5;
85
+ &--context {
86
+ &-normal {
87
+ background-color: #f5f5f5;
56
88
 
57
- svg {
58
- fill: map-get($palette, 'brand');
89
+ svg {
90
+ fill: map-get($palette, 'brand');
91
+ }
92
+ }
93
+
94
+ &-club {
95
+ background-color: rgba(map-get($palette, 'expertClub'), 0.05);
96
+
97
+ svg {
98
+ fill: map-get($palette, 'expertClub');
99
+ }
100
+ }
101
+
102
+ &-success {
103
+ background-color: #f5f5f5;
104
+
105
+ svg {
106
+ fill: map-get($palette, 'success');
107
+ }
108
+ }
109
+
110
+ &-failure {
111
+ background-color: #f5f5f5;
112
+
113
+ svg {
114
+ fill: map-get($palette, 'error');
115
+ }
59
116
  }
60
117
  }
61
118
 
62
- &--club {
63
- background-color: rgba(map-get($palette, 'expertClub'), 0.05);
119
+ &--active {
120
+ &.mg-icon-badge {
121
+ &--context {
122
+ &-normal {
123
+ background-color: map-get($palette, 'brand');
124
+
125
+ svg {
126
+ fill: #f5f5f5;
127
+ }
128
+ }
129
+
130
+ &-club {
131
+ background-color: map-get($palette, 'expertClub');
132
+
133
+ svg {
134
+ fill: mix(white, map-get($palette, 'expertClub'), 90%);
135
+ }
136
+ }
137
+
138
+ &-success {
139
+ background-color: map-get($palette, 'success');
140
+
141
+ svg {
142
+ fill: #f5f5f5;
143
+ }
144
+ }
145
+
146
+ &-failure {
147
+ background-color: map-get($palette, 'error');
64
148
 
65
- svg {
66
- fill: map-get($palette, 'expertClub');
149
+ svg {
150
+ fill: #f5f5f5;
151
+ }
152
+ }
153
+ }
67
154
  }
68
155
  }
69
156
  }
@@ -0,0 +1,40 @@
1
+ import MgAnchor from './Anchor.vue';
2
+
3
+ // More on default export: https://storybook.js.org/docs/vue/writing-stories/introduction#default-export
4
+ export default {
5
+ title: 'Label/Anchor',
6
+ component: MgAnchor,
7
+ // More on argTypes: https://storybook.js.org/docs/vue/api/argtypes
8
+ argTypes: {
9
+ light: {
10
+ control: { type: 'select' },
11
+ options: ['red', 'yellow', 'green'],
12
+ defaultValue: 'green'
13
+ },
14
+ default: {
15
+ description: "The default Vue slot",
16
+ control: {
17
+ type: 'text',
18
+ },
19
+ table: {
20
+ category: 'Slots',
21
+ type: {
22
+ summary: 'html',
23
+ },
24
+ }
25
+ }
26
+ },
27
+ };
28
+
29
+ // More on component templates: https://storybook.js.org/docs/vue/writing-stories/introduction#using-args
30
+ const Template = (args, { argTypes }) => ({
31
+ props: Object.keys(argTypes),
32
+ components: { MgAnchor },
33
+ template: `<mg-anchor v-bind="$props"><template v-if="${'default' in args}" v-slot>${args.default}</template></mg-anchor>`,
34
+ });
35
+
36
+ export const Default = Template.bind({});
37
+ // More on args: https://storybook.js.org/docs/vue/writing-stories/args
38
+ Default.args = {
39
+ default: 'bozza',
40
+ };
@@ -0,0 +1,49 @@
1
+ <template>
2
+ <div class="mg-anchor">
3
+ <div class="mg-anchor-content position-relative d-inline-flex align-items-center text-uppercase text-white">
4
+ <div><slot></slot></div>
5
+ </div>
6
+ </div>
7
+ </template>
8
+
9
+ <script>
10
+ export default {
11
+ name: 'mg-anchor',
12
+
13
+ computed: {
14
+ classes() {
15
+ return {
16
+ 'mg-anchor': true,
17
+ };
18
+ }
19
+ },
20
+ };
21
+ </script>
22
+
23
+ <style lang="scss">
24
+ .mg-anchor {
25
+ padding-left: 10px;
26
+
27
+ .mg-anchor-content {
28
+ background: #444444;
29
+ border-radius: 0 4px 4px 0;
30
+ font-family: 'Ubuntu', sans-serif;
31
+ font-size: 0.75rem;
32
+ font-weight: 500;
33
+ height: 1.625rem;
34
+ padding-right: 0.6875rem;
35
+ padding-left: 0.375rem;
36
+
37
+ &::after {
38
+ content: '';
39
+ position: absolute;
40
+ border-radius: 50%;
41
+ border-top: 16px solid transparent;
42
+ border-right: 16px solid #444444;
43
+ border-bottom: 16px solid transparent;
44
+ left: 0;
45
+ margin-left: -13px;
46
+ }
47
+ }
48
+ }
49
+ </style>
@@ -0,0 +1,46 @@
1
+ import MgLabel from './Label.vue';
2
+
3
+ // More on default export: https://storybook.js.org/docs/vue/writing-stories/introduction#default-export
4
+ export default {
5
+ title: 'Label/Label',
6
+ component: MgLabel,
7
+ // More on argTypes: https://storybook.js.org/docs/vue/api/argtypes
8
+ argTypes: {
9
+ size: {
10
+ control: { type: 'select' },
11
+ options: ['normal', 'x-small'],
12
+ defaultValue: 'normal'
13
+ },
14
+ theme: {
15
+ control: { type: 'select' },
16
+ options: ['light', 'dark'],
17
+ defaultValue: 'light'
18
+ },
19
+ default: {
20
+ description: "The default Vue slot",
21
+ control: {
22
+ type: 'text',
23
+ },
24
+ table: {
25
+ category: 'Slots',
26
+ type: {
27
+ summary: 'html',
28
+ },
29
+ }
30
+ }
31
+ },
32
+ };
33
+
34
+ // More on component templates: https://storybook.js.org/docs/vue/writing-stories/introduction#using-args
35
+ const Template = (args, { argTypes }) => ({
36
+ props: Object.keys(argTypes),
37
+ components: { MgLabel },
38
+ template: `<mg-label v-bind="$props"><template v-if="${'default' in args}" v-slot>${args.default}</template></mg-label>`,
39
+ });
40
+
41
+ export const Default = Template.bind({});
42
+ // More on args: https://storybook.js.org/docs/vue/writing-stories/args
43
+ Default.args = {
44
+ default: 'etichetta',
45
+ size: 'x-small'
46
+ };
@@ -0,0 +1,80 @@
1
+ <template>
2
+ <div
3
+ class="d-inline-flex align-items-center px-2 text-uppercase"
4
+ :class="classes"
5
+ >
6
+ <div>
7
+ <slot></slot>
8
+ </div>
9
+ </div>
10
+ </template>
11
+
12
+ <script>
13
+ export default {
14
+ name: 'mg-label',
15
+
16
+ props: {
17
+ size: {
18
+ type: String,
19
+ default: 'normal',
20
+ validator: function (value) {
21
+ return ['normal', 'x-small'].indexOf(value) !== -1;
22
+ },
23
+ },
24
+ theme: {
25
+ type: String,
26
+ default: 'light',
27
+ validator: function (value) {
28
+ return ['light', 'dark'].indexOf(value) !== -1;
29
+ },
30
+ },
31
+ },
32
+
33
+ computed: {
34
+ classes() {
35
+ return {
36
+ 'mg-label': true,
37
+ 'mg-label--size-x-small': this.size === 'x-small',
38
+ 'mg-label--size-normal': this.size === 'normal',
39
+ 'mg-label--theme-light': this.theme === 'light',
40
+ 'mg-label--theme-dark': this.theme === 'dark',
41
+ };
42
+ }
43
+ },
44
+ };
45
+ </script>
46
+
47
+ <style lang="scss">
48
+ .mg-label {
49
+ border-radius: 32px;
50
+ padding-top: 0.0625rem;
51
+ padding-bottom: 0.0625rem;
52
+
53
+ > div {
54
+ font-family: 'Raleway', sans-serif;
55
+ font-weight: 700;
56
+ }
57
+
58
+ &--size {
59
+ &-x-small {
60
+ font-size: 0.625rem;
61
+ }
62
+
63
+ &-normal {
64
+ font-size: 0.875rem;
65
+ }
66
+ }
67
+
68
+ &--theme {
69
+ &-light {
70
+ background: #f7f7f7;
71
+ color: #343434;
72
+ }
73
+
74
+ &-dark {
75
+ background: #5b5b5b;
76
+ color: #fff;
77
+ }
78
+ }
79
+ }
80
+ </style>
@@ -6,6 +6,11 @@ export default {
6
6
  component: MgHeadingFour,
7
7
  // More on argTypes: https://storybook.js.org/docs/vue/api/argtypes
8
8
  argTypes: {
9
+ level: {
10
+ control: { type: 'select' },
11
+ options: [null, 'club'],
12
+ defaultValue: null
13
+ },
9
14
  default: {
10
15
  description: "The default Vue slot",
11
16
  control: {
@@ -22,9 +27,10 @@ export default {
22
27
  };
23
28
 
24
29
  // More on component templates: https://storybook.js.org/docs/vue/writing-stories/introduction#using-args
25
- const Template = args => ({
30
+ const Template = (args, { argTypes }) => ({
31
+ props: Object.keys(argTypes),
26
32
  components: { MgHeadingFour },
27
- template: `<mg-heading-four><template v-if="${'default' in args}" v-slot>${args.default}</template></mg-heading-four>`,
33
+ template: `<mg-heading-four v-bind="$props"><template v-if="${'default' in args}" v-slot>${args.default}</template></mg-heading-four>`,
28
34
  });
29
35
 
30
36
  export const Default = Template.bind({});
@@ -6,10 +6,21 @@
6
6
  export default {
7
7
  name: 'mg-heading-four',
8
8
 
9
+ props: {
10
+ level: {
11
+ type: String,
12
+ default: null,
13
+ validator: function (value) {
14
+ return ['club'].indexOf(value) !== -1;
15
+ },
16
+ }
17
+ },
18
+
9
19
  computed: {
10
20
  classes() {
11
21
  return {
12
22
  'mg-h4': true,
23
+ 'mg-h4--level-club': this.level === 'club',
13
24
  };
14
25
  }
15
26
  },
@@ -17,10 +28,18 @@ export default {
17
28
  </script>
18
29
 
19
30
  <style lang="scss">
31
+ @import '../../../assets/palette';
32
+
20
33
  .mg-h4 {
21
34
  color: #343434;
22
35
  font-family: 'Ubuntu', sans-serif;
23
36
  font-size: 0.875rem;
24
37
  font-weight: 700;
38
+
39
+ &--level {
40
+ &-club {
41
+ color: map-get($palette, 'expertClub') !important;
42
+ }
43
+ }
25
44
  }
26
45
  </style>
@@ -0,0 +1,14 @@
1
+ import {ColorItem, ColorPalette, Meta} from '@storybook/addon-docs';
2
+
3
+ <Meta title="Colors/Magic Team" />
4
+
5
+ <ColorPalette>
6
+ <ColorItem
7
+ title="Own Team"
8
+ colors={{'Razzmatazz': '#d81159'}}
9
+ />
10
+ <ColorItem
11
+ title="Opponent Team"
12
+ colors={{'Denim': '#116dd8'}}
13
+ />
14
+ </ColorPalette>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M16.4166 0.833496H4.74748C4.10415 0.833711 3.48126 1.05946 2.98718 1.47147C2.49311 1.88349 2.15911 2.45568 2.04331 3.0885L0.879145 9.50516C0.806608 9.90156 0.822078 10.3091 0.924461 10.6988C1.02684 11.0886 1.21364 11.4511 1.47162 11.7607C1.7296 12.0703 2.05248 12.3193 2.41739 12.4903C2.7823 12.6613 3.18033 12.75 3.58331 12.7502H7.76331L7.24998 14.061C7.03646 14.6349 6.96535 15.2521 7.04275 15.8596C7.12016 16.467 7.34376 17.0466 7.69439 17.5487C8.04502 18.0508 8.5122 18.4603 9.05587 18.7421C9.59953 19.0239 10.2034 19.1697 10.8158 19.1668C10.9921 19.1665 11.1646 19.1152 11.3126 19.0193C11.4605 18.9234 11.5777 18.7868 11.65 18.626L14.2625 12.7502H16.4166C17.146 12.7502 17.8455 12.4604 18.3612 11.9447C18.8769 11.429 19.1666 10.7295 19.1666 10.0002V3.5835C19.1666 2.85415 18.8769 2.15468 18.3612 1.63895C17.8455 1.12323 17.146 0.833496 16.4166 0.833496ZM12.75 11.641L10.2566 17.251C10.0015 17.1738 9.76492 17.0452 9.56139 16.8731C9.35786 16.701 9.19172 16.4891 9.07321 16.2503C8.9547 16.0116 8.88633 15.7511 8.8723 15.4849C8.85827 15.2188 8.89889 14.9525 8.99164 14.7027L9.47748 13.3918C9.581 13.1148 9.61595 12.8168 9.57934 12.5233C9.54274 12.2298 9.43566 11.9495 9.26726 11.7063C9.09885 11.4632 8.87412 11.2644 8.61223 11.1269C8.35035 10.9894 8.05909 10.9173 7.76331 10.9168H3.58331C3.44864 10.917 3.31558 10.8876 3.19359 10.8306C3.07159 10.7735 2.96367 10.6903 2.87748 10.5868C2.78917 10.4848 2.72449 10.3645 2.68804 10.2346C2.6516 10.1046 2.64429 9.96825 2.66665 9.83516L3.83081 3.4185C3.86986 3.20495 3.98342 3.01219 4.15129 2.87455C4.31915 2.7369 4.53042 2.66329 4.74748 2.66683H12.75V11.641ZM17.3333 10.0002C17.3333 10.2433 17.2367 10.4764 17.0648 10.6483C16.8929 10.8203 16.6598 10.9168 16.4166 10.9168H14.5833V2.66683H16.4166C16.6598 2.66683 16.8929 2.76341 17.0648 2.93531C17.2367 3.10722 17.3333 3.34038 17.3333 3.5835V10.0002Z" fill="#EC4141"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M19.3 8.08004C19.019 7.74269 18.6674 7.47113 18.27 7.28452C17.8726 7.0979 17.439 7.0008 17 7.00004H12.44L13 5.57004C13.2329 4.94393 13.3105 4.27065 13.2261 3.60797C13.1416 2.94528 12.8977 2.31297 12.5152 1.76527C12.1327 1.21758 11.623 0.770841 11.0299 0.463388C10.4369 0.155934 9.77804 -0.00305943 9.11 4.45912e-05C8.91764 0.000445953 8.72948 0.0563198 8.56807 0.160967C8.40666 0.265615 8.27887 0.414594 8.2 0.590044L5.35 7.00004H3C2.20435 7.00004 1.44129 7.31611 0.87868 7.87872C0.316071 8.44133 0 9.2044 0 10V17C0 17.7957 0.316071 18.5588 0.87868 19.1214C1.44129 19.684 2.20435 20 3 20H15.73C16.4318 19.9998 17.1113 19.7535 17.6503 19.3041C18.1893 18.8546 18.5537 18.2304 18.68 17.54L19.95 10.54C20.0286 10.1074 20.011 9.66283 19.8987 9.23772C19.7864 8.81262 19.582 8.4174 19.3 8.08004ZM5 18H3C2.73478 18 2.48043 17.8947 2.29289 17.7072C2.10536 17.5196 2 17.2653 2 17V10C2 9.73483 2.10536 9.48047 2.29289 9.29294C2.48043 9.1054 2.73478 9.00004 3 9.00004H5V18ZM18 10.18L16.73 17.18C16.6874 17.413 16.5635 17.6233 16.3804 17.7734C16.1973 17.9236 15.9668 18.0039 15.73 18H7V8.21004L9.72 2.09004C9.99998 2.17167 10.26 2.31045 10.4837 2.49763C10.7073 2.6848 10.8897 2.91631 11.0194 3.17754C11.1491 3.43876 11.2232 3.72404 11.2371 4.01535C11.2509 4.30666 11.2043 4.59768 11.1 4.87004L10.57 6.30005C10.4571 6.6023 10.4189 6.92739 10.4589 7.24758C10.4988 7.56776 10.6156 7.87353 10.7993 8.13878C10.983 8.40404 11.2282 8.62091 11.5139 8.77088C11.7996 8.92086 12.1173 8.99948 12.44 9.00004H17C17.1469 8.99981 17.2921 9.03194 17.4252 9.09416C17.5582 9.15638 17.676 9.24716 17.77 9.36004C17.8663 9.47137 17.9369 9.60259 17.9767 9.74434C18.0164 9.88608 18.0244 10.0349 18 10.18Z" fill="white"/>
3
+ </svg>