| 123456789101112131415161718192021 |
- // import { Box } from "@mui/material";
- import styled from "styled-components";
- import { ReactComponent as Remove } from "../../../../../assets/images/svg/trash.svg";
- import selectedTheme from "../../../../../themes";
- import { IconButton } from "../../../../Buttons/IconButton/IconButton";
-
- export const RemoveButtonContainer = styled(IconButton)`
- position: absolute;
- top: 16px;
- right: 16px;
- background-color: ${selectedTheme.colors.primaryIconBackgroundColor};
- border-radius: 100%;
- width: 32px;
- height: 32px;
- & button {
- width: 32px;
- height: 32px;
- }
- `;
- export const RemoveIcon = styled(Remove)`
- `;
|