diff --git a/frontend/src/app/components/icons/ellipsis.jsx b/frontend/src/app/components/icons/ellipsis.jsx index cef5cb7..f30cf0b 100644 --- a/frontend/src/app/components/icons/ellipsis.jsx +++ b/frontend/src/app/components/icons/ellipsis.jsx @@ -1,17 +1,23 @@ import React from "react"; -const ellipsis = () => { +const ellipsis = ({ + width = "24", + height = "24", + color = "#858699", + style, +}) => { return ( ); diff --git a/frontend/src/app/components/icons/verticalEllipsis.jsx b/frontend/src/app/components/icons/verticalEllipsis.jsx deleted file mode 100644 index 448a8ee..0000000 --- a/frontend/src/app/components/icons/verticalEllipsis.jsx +++ /dev/null @@ -1,21 +0,0 @@ -import React from "react"; - -const verticalEllipsis = () => { - return ( - - ); -}; - -export default verticalEllipsis; diff --git a/frontend/src/app/components/navbar/navright/Profile.jsx b/frontend/src/app/components/navbar/navright/Profile.jsx index 2fecacd..fff1cda 100644 --- a/frontend/src/app/components/navbar/navright/Profile.jsx +++ b/frontend/src/app/components/navbar/navright/Profile.jsx @@ -2,7 +2,6 @@ import React, { useState } from "react"; import EllipsisIcon from "../../icons/ellipsis"; import ProfileDropdown from "./ProfileDropdown"; import styles from "./styles.module.css"; -import VerticalEllipsis from "../../icons/verticalEllipsis"; import useIsMobile from "@/app/hooks/useIsMobile"; const Profile = () => { const isMobile = useIsMobile(); @@ -43,7 +42,7 @@ const Profile = () => { {/* Mobile Ellipsis */} {isMobile && (