mirror of
https://github.com/supabase/supabase.git
synced 2026-06-06 22:23:54 +08:00
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.
17 lines
410 B
TypeScript
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
|