-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
f-vue-icons@0.9.0 - Add social and payment provider icons (#14)
* f-vue-icons@0.9.0 - Add social and payment provider icons * f-vue-icons@0.9.0 - Remove unnecessary mixin
- Loading branch information
1 parent
aaa5f7b
commit 6bfd85e
Showing
36 changed files
with
336 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<template> | ||
<amex-icon /> | ||
</template> | ||
|
||
<script> | ||
import AmexIcon from '@justeat/f-icons/src/img/icons/cards/amex.svg'; | ||
export default { | ||
components: { | ||
AmexIcon | ||
} | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import AmexIcon from './AmexIcon.vue'; | ||
|
||
const install = Vue => { | ||
Vue.component(AmexIcon.name, AmexIcon); | ||
}; | ||
|
||
export default install; |
13 changes: 13 additions & 0 deletions
13
packages/f-vue-icons/src/components/AmexSafekeyIcon/AmexSafekeyIcon.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<template> | ||
<amex-safekey-icon /> | ||
</template> | ||
|
||
<script> | ||
import AmexSafekeyIcon from '@justeat/f-icons/src/img/icons/cards/amex--safekey.svg'; | ||
export default { | ||
components: { | ||
AmexSafekeyIcon | ||
} | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import AmexSafekeyIcon from './AmexSafekeyIcon.vue'; | ||
|
||
const install = Vue => { | ||
Vue.component(AmexSafekeyIcon.name, AmexSafekeyIcon); | ||
}; | ||
|
||
export default install; |
13 changes: 13 additions & 0 deletions
13
packages/f-vue-icons/src/components/DankortIcon/DankortIcon.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<template> | ||
<dankort-icon /> | ||
</template> | ||
|
||
<script> | ||
import DankortIcon from '@justeat/f-icons/src/img/icons/cards/dk.svg'; | ||
export default { | ||
components: { | ||
DankortIcon | ||
} | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import DankortIcon from './DankortIcon.vue'; | ||
|
||
const install = Vue => { | ||
Vue.component(DankortIcon.name, DankortIcon); | ||
}; | ||
|
||
export default install; |
13 changes: 13 additions & 0 deletions
13
packages/f-vue-icons/src/components/FacebookIcon/FacebookIcon.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<template> | ||
<facebook-icon /> | ||
</template> | ||
|
||
<script> | ||
import FacebookIcon from '@justeat/f-icons/src/img/icons/social/icon-facebook.svg'; | ||
export default { | ||
components: { | ||
FacebookIcon | ||
} | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import FacebookIcon from './FacebookIcon.vue'; | ||
|
||
const install = Vue => { | ||
Vue.component(FacebookIcon.name, FacebookIcon); | ||
}; | ||
|
||
export default install; |
13 changes: 13 additions & 0 deletions
13
packages/f-vue-icons/src/components/InstagramIcon/InstagramIcon.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<template> | ||
<instagram-icon /> | ||
</template> | ||
|
||
<script> | ||
import InstagramIcon from '@justeat/f-icons/src/img/icons/social/icon-instagram.svg'; | ||
export default { | ||
components: { | ||
InstagramIcon | ||
} | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import InstagramIcon from './InstagramIcon.vue'; | ||
|
||
const install = Vue => { | ||
Vue.component(InstagramIcon.name, InstagramIcon); | ||
}; | ||
|
||
export default install; |
13 changes: 13 additions & 0 deletions
13
packages/f-vue-icons/src/components/InteracIcon/InteracIcon.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<template> | ||
<interac-icon /> | ||
</template> | ||
|
||
<script> | ||
import InteracIcon from '@justeat/f-icons/src/img/icons/cards/interac.svg'; | ||
export default { | ||
components: { | ||
InteracIcon | ||
} | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import InteracIcon from './InteracIcon.vue'; | ||
|
||
const install = Vue => { | ||
Vue.component(InteracIcon.name, InteracIcon); | ||
}; | ||
|
||
export default install; |
13 changes: 13 additions & 0 deletions
13
packages/f-vue-icons/src/components/MaestroIcon/MaestroIcon.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<template> | ||
<maestro-icon /> | ||
</template> | ||
|
||
<script> | ||
import MaestroIcon from '@justeat/f-icons/src/img/icons/cards/maestro.svg'; | ||
export default { | ||
components: { | ||
MaestroIcon | ||
} | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import MaestroIcon from './MaestroIcon.vue'; | ||
|
||
const install = Vue => { | ||
Vue.component(MaestroIcon.name, MaestroIcon); | ||
}; | ||
|
||
export default install; |
13 changes: 13 additions & 0 deletions
13
packages/f-vue-icons/src/components/MastercardIcon/MastercardIcon.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<template> | ||
<mastercard-icon /> | ||
</template> | ||
|
||
<script> | ||
import MastercardIcon from '@justeat/f-icons/src/img/icons/cards/mastercard.svg'; | ||
export default { | ||
components: { | ||
MastercardIcon | ||
} | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import MastercardIcon from './MastercardIcon.vue'; | ||
|
||
const install = Vue => { | ||
Vue.component(MastercardIcon.name, MastercardIcon); | ||
}; | ||
|
||
export default install; |
13 changes: 13 additions & 0 deletions
13
packages/f-vue-icons/src/components/MastercardSecurecodeIcon/MastercardSecurecodeIcon.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<template> | ||
<mastercard-securecode-icon /> | ||
</template> | ||
|
||
<script> | ||
import MastercardSecurecodeIcon from '@justeat/f-icons/src/img/icons/cards/mastercard--securecode.svg'; | ||
export default { | ||
components: { | ||
MastercardSecurecodeIcon | ||
} | ||
} | ||
</script> |
7 changes: 7 additions & 0 deletions
7
packages/f-vue-icons/src/components/MastercardSecurecodeIcon/index.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import MastercardSecurecodeIcon from './MastercardSecurecodeIcon.vue'; | ||
|
||
const install = Vue => { | ||
Vue.component(MastercardSecurecodeIcon.name, MastercardSecurecodeIcon); | ||
}; | ||
|
||
export default install; |
13 changes: 13 additions & 0 deletions
13
packages/f-vue-icons/src/components/PayPalIcon/PayPalIcon.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<template> | ||
<paypal-icon /> | ||
</template> | ||
|
||
<script> | ||
import PaypalIcon from '@justeat/f-icons/src/img/icons/cards/paypal.svg'; | ||
export default { | ||
components: { | ||
PaypalIcon | ||
} | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import PayPalIcon from './PayPalIcon.vue'; | ||
|
||
const install = Vue => { | ||
Vue.component(PayPalIcon.name, PayPalIcon); | ||
}; | ||
|
||
export default install; |
13 changes: 13 additions & 0 deletions
13
packages/f-vue-icons/src/components/PinterestIcon/PinterestIcon.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<template> | ||
<pinterest-icon /> | ||
</template> | ||
|
||
<script> | ||
import PinterestIcon from '@justeat/f-icons/src/img/icons/social/icon-pinterest.svg'; | ||
export default { | ||
components: { | ||
PinterestIcon | ||
} | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import PinterestIcon from './PinterestIcon.vue'; | ||
|
||
const install = Vue => { | ||
Vue.component(PinterestIcon.name, PinterestIcon); | ||
}; | ||
|
||
export default install; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<template> | ||
<rss-icon /> | ||
</template> | ||
|
||
<script> | ||
import RssIcon from '@justeat/f-icons/src/img/icons/social/icon-rss.svg'; | ||
export default { | ||
components: { | ||
RssIcon | ||
} | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import RssIcon from './RssIcon.vue'; | ||
|
||
const install = Vue => { | ||
Vue.component(RssIcon.name, RssIcon); | ||
}; | ||
|
||
export default install; |
13 changes: 13 additions & 0 deletions
13
packages/f-vue-icons/src/components/TwitterIcon/TwitterIcon.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<template> | ||
<twitter-icon /> | ||
</template> | ||
|
||
<script> | ||
import TwitterIcon from '@justeat/f-icons/src/img/icons/social/icon-twitter.svg'; | ||
export default { | ||
components: { | ||
TwitterIcon | ||
} | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import TwitterIcon from './TwitterIcon.vue'; | ||
|
||
const install = Vue => { | ||
Vue.component(TwitterIcon.name, TwitterIcon); | ||
}; | ||
|
||
export default install; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<template> | ||
<visa-icon /> | ||
</template> | ||
|
||
<script> | ||
import VisaIcon from '@justeat/f-icons/src/img/icons/cards/visa.svg'; | ||
export default { | ||
components: { | ||
VisaIcon | ||
} | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import VisaIcon from './VisaIcon.vue'; | ||
|
||
const install = Vue => { | ||
Vue.component(VisaIcon.name, VisaIcon); | ||
}; | ||
|
||
export default install; |
13 changes: 13 additions & 0 deletions
13
packages/f-vue-icons/src/components/VisaVerifiedIcon/VisaVerifiedIcon.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<template> | ||
<visa-verified-icon /> | ||
</template> | ||
|
||
<script> | ||
import VisaVerifiedIcon from '@justeat/f-icons/src/img/icons/cards/visa--verified.svg'; | ||
export default { | ||
components: { | ||
VisaVerifiedIcon | ||
} | ||
} | ||
</script> |
7 changes: 7 additions & 0 deletions
7
packages/f-vue-icons/src/components/VisaVerifiedIcon/index.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import VisaVerifiedIcon from './VisaVerifiedIcon.vue'; | ||
|
||
const install = Vue => { | ||
Vue.component(VisaVerifiedIcon.name, VisaVerifiedIcon); | ||
}; | ||
|
||
export default install; |
13 changes: 13 additions & 0 deletions
13
packages/f-vue-icons/src/components/YouTubeIcon/YouTubeIcon.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<template> | ||
<youtube-icon /> | ||
</template> | ||
|
||
<script> | ||
import YoutubeIcon from '@justeat/f-icons/src/img/icons/social/icon-youtube.svg'; | ||
export default { | ||
components: { | ||
YoutubeIcon | ||
} | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import YouTubeIcon from './YouTubeIcon.vue'; | ||
|
||
const install = Vue => { | ||
Vue.component(YouTubeIcon.name, YouTubeIcon); | ||
}; | ||
|
||
export default install; |
Oops, something went wrong.