From ba41349c678b1d1a7092601dbde289953462a3be Mon Sep 17 00:00:00 2001 From: jyswee Date: Thu, 23 Jul 2026 22:14:31 +0000 Subject: [PATCH] Seed: editorial template (15 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;