選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

RemoveButton.styled.js 624B

123456789101112131415161718192021
  1. // import { Box } from "@mui/material";
  2. import styled from "styled-components";
  3. import { ReactComponent as Remove } from "../../../../../assets/images/svg/trash.svg";
  4. import selectedTheme from "../../../../../themes";
  5. import { IconButton } from "../../../../Buttons/IconButton/IconButton";
  6. export const RemoveButtonContainer = styled(IconButton)`
  7. position: absolute;
  8. top: 16px;
  9. right: 16px;
  10. background-color: ${selectedTheme.colors.primaryIconBackgroundColor};
  11. border-radius: 100%;
  12. width: 32px;
  13. height: 32px;
  14. & button {
  15. width: 32px;
  16. height: 32px;
  17. }
  18. `;
  19. export const RemoveIcon = styled(Remove)`
  20. `;