Skip to content

Commit 5aa3507

Browse files
committed
fix import
1 parent 04177ed commit 5aa3507

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

Client/src/components/ui/avatar.tsx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import * as React from "react"
2-
import * as AvatarPrimitive from "@radix-ui/react-avatar"
1+
import * as React from "react";
2+
import * as AvatarPrimitive from "@radix-ui/react-avatar";
33

4-
import { cn } from "@/lib/utils"
4+
import { cn } from "../../lib/utils";
55

66
function Avatar({
77
className,
@@ -16,7 +16,7 @@ function Avatar({
1616
)}
1717
{...props}
1818
/>
19-
)
19+
);
2020
}
2121

2222
function AvatarImage({
@@ -29,7 +29,7 @@ function AvatarImage({
2929
className={cn("aspect-square size-full", className)}
3030
{...props}
3131
/>
32-
)
32+
);
3333
}
3434

3535
function AvatarFallback({
@@ -45,7 +45,7 @@ function AvatarFallback({
4545
)}
4646
{...props}
4747
/>
48-
)
48+
);
4949
}
5050

51-
export { Avatar, AvatarImage, AvatarFallback }
51+
export { Avatar, AvatarImage, AvatarFallback };

0 commit comments

Comments
 (0)