DocSpace-client/packages/components/calendar/styled-components/HeaderActionIcon.js
2023-05-11 15:48:35 +05:00

10 lines
262 B
JavaScript

import styled from "styled-components";
import { ArrowIcon } from "./ArrowIcon";
export const HeaderActionIcon = styled(ArrowIcon)`
transform: rotate(225deg);
top: 11px;
right: -14.29px;
border-color: ${(props) => props.theme.calendar.outlineColor};
`;