lint
This commit is contained in:
committed by
Nicolás Hatcher Andrés
parent
ebc31780ab
commit
8ad407432f
@@ -1,4 +1,5 @@
|
||||
import { Button, Menu, MenuItem, MenuItemProps, styled } from "@mui/material";
|
||||
import { Button, Menu, MenuItem, styled } from "@mui/material";
|
||||
import type { MenuItemProps } from "@mui/material";
|
||||
import { ChevronDown } from "lucide-react";
|
||||
import { useRef, useState } from "react";
|
||||
import { theme } from "../../theme";
|
||||
@@ -139,7 +140,7 @@ const StyledMenu = styled(Menu)`
|
||||
}
|
||||
`;
|
||||
|
||||
const StyledMenuItem = styled(MenuItem)<MenuItemProps>(({}) => ({
|
||||
const StyledMenuItem = styled(MenuItem)<MenuItemProps>(() => ({
|
||||
display: "flex",
|
||||
justifyContent: "space-between",
|
||||
fontSize: "12px",
|
||||
@@ -148,12 +149,11 @@ const StyledMenuItem = styled(MenuItem)<MenuItemProps>(({}) => ({
|
||||
borderRadius: "4px",
|
||||
padding: "8px",
|
||||
height: "32px",
|
||||
'&:disabled': {
|
||||
"&:disabled": {
|
||||
color: "#BDBDBD",
|
||||
}
|
||||
},
|
||||
}));
|
||||
|
||||
|
||||
const TabWrapper = styled("div")<{ $color: string; $selected: boolean }>`
|
||||
display: flex;
|
||||
margin-right: 12px;
|
||||
|
||||
Reference in New Issue
Block a user