39 lines
557 B
Vue
39 lines
557 B
Vue
|
|
<template>
|
||
|
|
<div class="demo-space-x">
|
||
|
|
<VBtn
|
||
|
|
icon="tabler-briefcase"
|
||
|
|
rounded
|
||
|
|
/>
|
||
|
|
|
||
|
|
<VBtn
|
||
|
|
variant="tonal"
|
||
|
|
icon="tabler-user-plus"
|
||
|
|
/>
|
||
|
|
|
||
|
|
<VBtn
|
||
|
|
icon="tabler-search"
|
||
|
|
variant="outlined"
|
||
|
|
color="success"
|
||
|
|
/>
|
||
|
|
|
||
|
|
<VBtn
|
||
|
|
icon="tabler-thumb-up"
|
||
|
|
variant="text"
|
||
|
|
color="info"
|
||
|
|
/>
|
||
|
|
|
||
|
|
<VBtn
|
||
|
|
icon="tabler-star"
|
||
|
|
variant="tonal"
|
||
|
|
color="success"
|
||
|
|
rounded
|
||
|
|
/>
|
||
|
|
|
||
|
|
<VBtn
|
||
|
|
icon="tabler-heart"
|
||
|
|
variant="text"
|
||
|
|
color="error"
|
||
|
|
/>
|
||
|
|
</div>
|
||
|
|
</template>
|