From d7f96863b265fbf6885c8a1d9e2d73487d868105 Mon Sep 17 00:00:00 2001 From: Manav Rathi Date: Sat, 20 Jul 2024 14:07:19 +0530 Subject: [PATCH] Remove duplicate --- .../CollectionShare/publicShare/switch.tsx | 61 ------------------- 1 file changed, 61 deletions(-) delete mode 100644 web/apps/photos/src/components/Collections/CollectionShare/publicShare/switch.tsx diff --git a/web/apps/photos/src/components/Collections/CollectionShare/publicShare/switch.tsx b/web/apps/photos/src/components/Collections/CollectionShare/publicShare/switch.tsx deleted file mode 100644 index 112791cb6e..0000000000 --- a/web/apps/photos/src/components/Collections/CollectionShare/publicShare/switch.tsx +++ /dev/null @@ -1,61 +0,0 @@ -import { Switch, styled, type SwitchProps } from "@mui/material"; -const PublicShareSwitch = styled((props: SwitchProps) => ( - -))(({ theme }) => ({ - width: 40, - height: 24, - padding: 0, - "& .MuiSwitch-switchBase": { - padding: 0, - margin: 2, - transitionDuration: "300ms", - "&.Mui-checked": { - transform: "translateX(16px)", - color: "#fff", - "& + .MuiSwitch-track": { - backgroundColor: - theme.palette.mode === "dark" ? "#2ECA45" : "#65C466", - opacity: 1, - border: 0, - }, - "&.Mui-disabled + .MuiSwitch-track": { - opacity: 0.5, - }, - }, - "&.Mui-focusVisible .MuiSwitch-thumb": { - color: "#33cf4d", - border: "6px solid #fff", - }, - "&.Mui-disabled .MuiSwitch-thumb": { - color: - theme.palette.mode === "light" - ? theme.palette.grey[100] - : theme.palette.grey[600], - }, - "&.Mui-disabled + .MuiSwitch-track": { - opacity: theme.palette.mode === "light" ? 0.7 : 0.3, - }, - }, - "& .MuiSwitch-thumb": { - boxSizing: "border-box", - width: 20, - height: 20, - }, - "& .MuiSwitch-track": { - borderRadius: 22 / 2, - backgroundColor: - theme.palette.mode === "light" - ? "#E9E9EA" - : theme.colors.fill.muted, - opacity: 1, - transition: theme.transitions.create(["background-color"], { - duration: 500, - }), - }, -})); - -export default PublicShareSwitch;