From fba899cbce474068a36c111ebadcb789cf80376b Mon Sep 17 00:00:00 2001 From: jyswee Date: Thu, 23 Jul 2026 22:09:09 +0000 Subject: [PATCH] Seed: landing template (12 files) --- src/components/ui/avatar.tsx | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/components/ui/avatar.tsx diff --git a/src/components/ui/avatar.tsx b/src/components/ui/avatar.tsx new file mode 100644 index 0000000..31c0460 --- /dev/null +++ b/src/components/ui/avatar.tsx @@ -0,0 +1,16 @@ +import * as React from "react"; +import { cn } from "@/lib/utils"; + +export const Avatar = ({ className, ...props }: React.HTMLAttributes) => ( +
+); + +export const AvatarImage = ({ className, ...props }: React.ImgHTMLAttributes) => ( + +); + +export const AvatarFallback = ({ className, ...props }: React.HTMLAttributes) => ( +
+); + +export default Avatar;