mirror of
https://github.com/harivansh-afk/Saas-Teamspace.git
synced 2026-04-21 15:01:33 +00:00
initial commit
This commit is contained in:
commit
ef9ccf22d3
133 changed files with 20802 additions and 0 deletions
42
components/ui/user-avatar-card.tsx
Normal file
42
components/ui/user-avatar-card.tsx
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
'use client'
|
||||
import { cn } from '@/lib/utils'
|
||||
interface AvatarCirclesProps {
|
||||
className?: string
|
||||
}
|
||||
|
||||
export default function AvatarCircles({ className }: AvatarCirclesProps) {
|
||||
return (
|
||||
<div
|
||||
className={cn(
|
||||
'z-10 flex items-center justify-center -space-x-4 rtl:space-x-reverse pt-3',
|
||||
className
|
||||
)}
|
||||
>
|
||||
<img
|
||||
className="h-9 w-9 rounded-full border-2 border-secondary"
|
||||
src="/testimonials/john-doe.jpg"
|
||||
alt=""
|
||||
/>
|
||||
<img
|
||||
className="h-9 w-9 rounded-full border-2 border-secondary"
|
||||
src="/testimonials/john-doe.jpg"
|
||||
alt=""
|
||||
/>
|
||||
<img
|
||||
className="h-9 w-9 rounded-full border-2 border-secondary"
|
||||
src="/testimonials/john-doe.jpg"
|
||||
alt=""
|
||||
/>
|
||||
<img
|
||||
className="h-9 w-9 rounded-full border-2 border-secondary"
|
||||
src="/testimonials/john-doe.jpg"
|
||||
alt=""
|
||||
/>
|
||||
<img
|
||||
className="h-9 w-9 rounded-full border-2 border-secondary"
|
||||
src="/testimonials/john-doe.jpg"
|
||||
alt=""
|
||||
/>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue