Update LoadingDoc.vue

Fixed incorrect icon name from 'check' to 'search'.
pull/5758/head
mustafa60x 2024-05-09 10:55:14 +03:00 committed by Tuğçe Küçükoğlu
parent da33e97638
commit c663c5ee20
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
<p>Busy state is controlled with the <i>loading</i> property.</p>
</DocSectionText>
<div class="card flex justify-content-center">
<Button type="button" label="Search" icon="pi pi-check" :loading="loading" @click="load" />
<Button type="button" label="Search" icon="pi pi-search" :loading="loading" @click="load" />
</div>
<DocSectionCode :code="code" />
</template>