DocSpace-client/packages/components/calendar/styled-components/ArrowIcon.js
2023-02-07 14:22:12 +05:00

13 lines
268 B
JavaScript

import styled from "styled-components";
import Base from "../../themes/base";
export const ArrowIcon = styled.span`
position: absolute;
border-left: 2px solid;
border-bottom: 2px solid;
width: 5px;
height: 5px;
`;
ArrowIcon.defaultProps = { theme: Base };