Files
supabase/apps/ui-library/registry/default/examples/current-user-avatar-preview.tsx
Ivan Vasilov 1cd1ebfc7f chire: Sort imports in all packages, cms, design-system and ui-library apps (#41610)
Sorted all imports in all packages, `cms`, `design-system` and
`ui-library` apps by running `pnpm format` on them.

All changes in this PR are done by the script.
2026-02-05 13:54:10 +01:00

17 lines
410 B
TypeScript

// 'use client'
import { Avatar, AvatarFallback, AvatarImage } from '@/registry/default/components/ui/avatar'
const CurrentUserAvatarPreview = () => {
return (
<Avatar>
<AvatarImage
src={`${process.env.NEXT_PUBLIC_BASE_PATH}/img/profile-images/profile-1.png`}
alt="MS"
/>
<AvatarFallback>MS</AvatarFallback>
</Avatar>
)
}
export default CurrentUserAvatarPreview