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
@@ -8,7 +8,7 @@ export const StyledInput = styled('input')<{
width?: CSSProperties['width'];
height?: CSSProperties['height'];
noBorder?: boolean;
}>(({ theme, width, disabled, height, noBorder }) => {
}>(({ width, disabled, height, noBorder }) => {
return {
width: width || '100%',
height,