DocSpace-client/packages/components/calendar/styled-components/HeaderActionIcon.js

10 lines
262 B
JavaScript
Raw Normal View History

2023-05-11 10:48:35 +00:00
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};
`;