From 29aa60839947c83f216880367bd16bcaaecbce97 Mon Sep 17 00:00:00 2001 From: Manav Rathi Date: Tue, 24 Sep 2024 10:19:40 +0530 Subject: [PATCH] Ah --- web/packages/new/photos/components/mui-custom.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/web/packages/new/photos/components/mui-custom.tsx b/web/packages/new/photos/components/mui-custom.tsx index e41a42d3d9..9250226bb2 100644 --- a/web/packages/new/photos/components/mui-custom.tsx +++ b/web/packages/new/photos/components/mui-custom.tsx @@ -13,6 +13,9 @@ export const FilledIconButton = styled(IconButton)(({ theme }) => ({ * There are cases where we semantically (and functionally) want a button, but * don't want the browser's default styling. This component is meant to act as a * base for such cases. + * + * Contrary to its name, it does add a bit of styling, to make these buttons fit + * in with the rest of our theme. */ export const UnstyledButton = styled("button")` /* Reset some button defaults that are affecting us */ @@ -25,7 +28,6 @@ export const UnstyledButton = styled("button")` inherit that customization also. */ letter-spacing: inherit; - /* Button should do this for us (I think), but it isn't working for some - reason I don't yet know (maybe something we customized in the theme?) */ + /* The button default is to show an flipped arrow. Show a hand instead. */ cursor: pointer; `;