mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
38 lines
943 B
Vue
38 lines
943 B
Vue
<template>
|
|
<UAvatarGroup>
|
|
<ULink
|
|
to="https://github.com/benjamincanac"
|
|
target="_blank"
|
|
class="hover:ring-primary-500 dark:hover:ring-primary-400 transition"
|
|
raw
|
|
>
|
|
<UAvatar
|
|
src="https://avatars.githubusercontent.com/u/739984?v=4"
|
|
alt="Benjamin Canac"
|
|
/>
|
|
</ULink>
|
|
<ULink
|
|
to="https://github.com/romhml"
|
|
target="_blank"
|
|
class="hover:ring-primary-500 dark:hover:ring-primary-400 transition"
|
|
raw
|
|
>
|
|
<UAvatar
|
|
src="https://avatars.githubusercontent.com/u/25613751?v=4"
|
|
alt="Romain Hamel"
|
|
/>
|
|
</ULink>
|
|
<ULink
|
|
to="https://github.com/noook"
|
|
target="_blank"
|
|
class="hover:ring-primary-500 dark:hover:ring-primary-400 transition"
|
|
raw
|
|
>
|
|
<UAvatar
|
|
src="https://avatars.githubusercontent.com/u/19751938?v=4"
|
|
alt="Neil Richter"
|
|
/>
|
|
</ULink>
|
|
</UAvatarGroup>
|
|
</template>
|