feat: Remove ionicons v2 dependency on widget (#3402)

This commit is contained in:
Pranav Raj S
2021-11-18 15:18:51 +05:30
committed by GitHub
parent c2b4991fd8
commit a3ba8f9e35
15 changed files with 119 additions and 117 deletions

View File

@@ -25,12 +25,12 @@
@keyup.enter="onSubmit"
/>
<button
class="button"
class="button small"
:disabled="isButtonDisabled"
:style="{ background: widgetColor, borderColor: widgetColor }"
>
<spinner v-if="isUpdating && feedback" />
<i v-else class="ion-ios-arrow-forward" />
<fluent-icon v-else icon="chevron-right" />
</button>
</form>
</div>
@@ -40,10 +40,12 @@
import { mapGetters } from 'vuex';
import Spinner from 'shared/components/Spinner';
import { CSAT_RATINGS } from 'shared/constants/messages';
import FluentIcon from 'shared/components/FluentIcon/Index.vue';
export default {
components: {
Spinner,
FluentIcon,
},
props: {
messageContentAttributes: {