We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04177ed commit 5aa3507Copy full SHA for 5aa3507
1 file changed
Client/src/components/ui/avatar.tsx
@@ -1,7 +1,7 @@
1
-import * as React from "react"
2
-import * as AvatarPrimitive from "@radix-ui/react-avatar"
+import * as React from "react";
+import * as AvatarPrimitive from "@radix-ui/react-avatar";
3
4
-import { cn } from "@/lib/utils"
+import { cn } from "../../lib/utils";
5
6
function Avatar({
7
className,
@@ -16,7 +16,7 @@ function Avatar({
16
)}
17
{...props}
18
/>
19
- )
+ );
20
}
21
22
function AvatarImage({
@@ -29,7 +29,7 @@ function AvatarImage({
29
className={cn("aspect-square size-full", className)}
30
31
32
33
34
35
function AvatarFallback({
@@ -45,7 +45,7 @@ function AvatarFallback({
45
46
47
48
49
50
51
-export { Avatar, AvatarImage, AvatarFallback }
+export { Avatar, AvatarImage, AvatarFallback };
0 commit comments