Adjust icon

This commit is contained in:
Nicolas Mowen 2024-04-10 07:35:23 -06:00
parent 8d8a07c02a
commit 6239fc36ab
2 changed files with 3 additions and 3 deletions

View File

@ -145,7 +145,7 @@ export default function VideoControls({
className={`px-4 py-2 flex justify-between items-center gap-8 text-primary z-50 bg-background/60 rounded-lg ${className ?? ""}`} className={`px-4 py-2 flex justify-between items-center gap-8 text-primary z-50 bg-background/60 rounded-lg ${className ?? ""}`}
> >
{video && features.volume && ( {video && features.volume && (
<div className="flex justify-normal items-center gap-2"> <div className="flex justify-normal items-center gap-2 cursor-pointer">
<VolumeIcon <VolumeIcon
className="size-5" className="size-5"
onClick={(e: React.MouseEvent) => { onClick={(e: React.MouseEvent) => {

View File

@ -1,7 +1,7 @@
import Logo from "@/components/Logo"; import Logo from "@/components/Logo";
import { FaCompactDisc, FaVideo } from "react-icons/fa"; import { FaCompactDisc, FaVideo } from "react-icons/fa";
import { TbTimelineEventFilled } from "react-icons/tb";
import { LuConstruction } from "react-icons/lu"; import { LuConstruction } from "react-icons/lu";
import { MdVideoLibrary } from "react-icons/md";
export const navbarLinks = [ export const navbarLinks = [
{ {
@ -12,7 +12,7 @@ export const navbarLinks = [
}, },
{ {
id: 2, id: 2,
icon: TbTimelineEventFilled, icon: MdVideoLibrary,
title: "Review", title: "Review",
url: "/review", url: "/review",
}, },