diff --git a/apps/app/components/ui/custom-menu.tsx b/apps/app/components/ui/custom-menu.tsx index 1eacd5ba9..f37d2202f 100644 --- a/apps/app/components/ui/custom-menu.tsx +++ b/apps/app/components/ui/custom-menu.tsx @@ -12,9 +12,11 @@ type Props = { className?: string; ellipsis?: boolean; verticalEllipsis?: boolean; + height?: "sm" | "md" | "rg" | "lg"; width?: "sm" | "md" | "lg" | "xl" | "auto"; textAlignment?: "left" | "center" | "right"; noBorder?: boolean; + noChevron?: boolean; optionsPosition?: "left" | "right"; customButton?: JSX.Element; }; @@ -33,9 +35,11 @@ const CustomMenu = ({ className = "", ellipsis = false, verticalEllipsis = false, + height = "md", width = "auto", textAlignment, noBorder = false, + noChevron = false, optionsPosition = "right", customButton, }: Props) => ( @@ -77,7 +81,7 @@ const CustomMenu = ({ }`} > {label} - {!noBorder &&