1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2026-06-05 20:15:31 -04:00

fix more icons

This commit is contained in:
2025-05-20 16:55:28 -04:00
parent 2393bb3337
commit 1996ad6c10
13 changed files with 300 additions and 277 deletions
+3 -3
View File
@@ -51,15 +51,15 @@ const CommentActions = ({ comment }: { comment: CommentWithUser }) => {
/>
) : (
<div className="flex gap-2">
<Button variant="outline" size="sm" onClick={() => setIsReplying(!isReplying)} className="h-8 px-2">
<ReplyIcon className="mr-1 h-3.5 w-3.5" />
<Button variant="outline" size="sm" onClick={() => setIsReplying(!isReplying)}>
<ReplyIcon />
Reply
</Button>
{session.user.id === comment.user.id && (
<DropdownMenu>
<DropdownMenuTrigger asChild>
<Button variant="outline" size="sm" className="h-8 px-2 text-xs">
<Button variant="outline" size="sm">
<EllipsisIcon />
<span className="sr-only">Actions Menu</span>
</Button>
+1 -1
View File
@@ -171,7 +171,7 @@ const CommentForm = ({
<Button type="submit" disabled={isPending || !content.trim()}>
{isPending ? (
<>
<Loader2Icon className="mr-2 h-4 w-4 animate-spin" />
<Loader2Icon className="animate-spin" />
{isEditing ? "Updating..." : "Posting..."}
</>
) : isEditing ? (