chore: enable no-unused vars (#2181)

This commit is contained in:
Himself65
2023-04-28 00:41:06 -05:00
committed by GitHub
parent b6ca2aa063
commit 70fbbb39c1
70 changed files with 206 additions and 225 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ export type IconMenuProps = PropsWithChildren<{
HTMLAttributes<HTMLButtonElement>;
export const MenuItem = forwardRef<HTMLButtonElement, IconMenuProps>(
({ endIcon, icon, iconSize, children, ...props }, ref) => {
({ endIcon, icon, children, ...props }, ref) => {
return (
<StyledMenuItem ref={ref} {...props}>
{icon && <StyledStartIconWrapper>{icon}</StyledStartIconWrapper>}
@@ -12,7 +12,6 @@ export const PureMenu = ({
children,
placement,
width,
height,
...otherProps
}: PureMenuProps) => {
return (
+5 -5
View File
@@ -6,7 +6,7 @@ import StyledPopperContainer from '../shared/Container';
export const StyledMenuWrapper = styled(StyledPopperContainer)<{
width?: CSSProperties['width'];
height?: CSSProperties['height'];
}>(({ theme, width, height }) => {
}>(({ width, height }) => {
return {
width,
height,
@@ -18,14 +18,14 @@ export const StyledMenuWrapper = styled(StyledPopperContainer)<{
};
});
export const StyledStartIconWrapper = styled('div')(({ theme }) => {
export const StyledStartIconWrapper = styled('div')(() => {
return {
marginRight: '12px',
fontSize: '20px',
color: 'var(--affine-icon-color)',
};
});
export const StyledEndIconWrapper = styled('div')(({ theme }) => {
export const StyledEndIconWrapper = styled('div')(() => {
return {
marginLeft: '12px',
fontSize: '20px',
@@ -33,7 +33,7 @@ export const StyledEndIconWrapper = styled('div')(({ theme }) => {
};
});
export const StyledContent = styled('div')(({ theme }) => {
export const StyledContent = styled('div')(() => {
return {
textAlign: 'left',
flexGrow: 1,
@@ -45,7 +45,7 @@ export const StyledContent = styled('div')(({ theme }) => {
export const StyledMenuItem = styled('button')<{
isDir?: boolean;
disabled?: boolean;
}>(({ theme, isDir = false, disabled = false }) => {
}>(({ isDir = false, disabled = false }) => {
return {
width: '100%',
borderRadius: '5px',