diff --git a/web/apps/photos/src/components/AddToCollectionBtn.tsx b/web/apps/photos/src/components/AddToCollectionBtn.tsx deleted file mode 100644 index 19409ce516..0000000000 --- a/web/apps/photos/src/components/AddToCollectionBtn.tsx +++ /dev/null @@ -1,40 +0,0 @@ -import { styled } from "@mui/material"; - -const Wrapper = styled("button")` - border: none; - background-color: #51cd7c; - position: fixed; - z-index: 1; - bottom: 20px; - right: 100px; - width: 60px; - height: 60px; - border-radius: 50%; - color: #fff; -`; -export default function AddToCollectionBtn(props) { - return ( - - - - - - - ); -} - -AddToCollectionBtn.defaultProps = { - height: 24, - width: 24, - viewBox: "0 0 24 24", -};