@eturnity/eturnity_reusable_components 7.22.4--EPDM-10563.2 → 7.22.4--EPDM-10563.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eturnity/eturnity_reusable_components",
3
- "version": "7.22.4--EPDM-10563.2",
3
+ "version": "7.22.4--EPDM-10563.3",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vue-cli-service serve",
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <info-container>
3
- <icon name="info" size="24px" />
3
+ <icon name="info" size="24px" :color="color" />
4
4
  <text-container>
5
5
  <slot />
6
6
  </text-container>
@@ -8,6 +8,7 @@
8
8
  </template>
9
9
 
10
10
  <script>
11
+ // import InfoCard from '@eturnity/eturnity_reusable_components/src/components/infoCard'
11
12
  import styled from 'vue3-styled-components'
12
13
  import Icon from '../icon'
13
14
 
@@ -31,6 +32,11 @@ export default {
31
32
  Icon,
32
33
  InfoContainer,
33
34
  TextContainer
35
+ },
36
+ props: {
37
+ color: {
38
+ required: false
39
+ }
34
40
  }
35
41
  }
36
42
  </script>