captcha
2 years ago
gateways
2 years ago
proAddons
2 years ago
proGateways
2 years ago
sidebar
2 years ago
tabs
2 years ago
IsPROIcon.vue
2 years ago
SettingsPage.vue
2 years ago
addons-tabs.js
2 years ago
index.js
2 years ago
IsPROIcon.vue
34 lines
| 1 | <template> |
| 2 | <span>{{ __( 'Pro', 'jet-form-builder' ) }}</span> |
| 3 | </template> |
| 4 | |
| 5 | <script> |
| 6 | const { i18n } = JetFBMixins; |
| 7 | |
| 8 | export default { |
| 9 | name: 'IsPROIcon', |
| 10 | mixins: [ i18n ], |
| 11 | props: { |
| 12 | isActive: { |
| 13 | type: Boolean, |
| 14 | default: false, |
| 15 | }, |
| 16 | }, |
| 17 | }; |
| 18 | </script> |
| 19 | |
| 20 | <style scoped> |
| 21 | span { |
| 22 | background-color: #007CBA; |
| 23 | padding: 0.1em 0.3em; |
| 24 | text-transform: uppercase; |
| 25 | border-radius: 3px; |
| 26 | color: white; |
| 27 | font-size: 12px; |
| 28 | font-style: normal; |
| 29 | font-weight: 700; |
| 30 | line-height: 16px; |
| 31 | letter-spacing: 0; |
| 32 | text-align: left; |
| 33 | } |
| 34 | </style> |