DocSpace-client/packages/components/calendar/styled-components/Weekday.js
2023-03-01 15:18:09 +05:00

18 lines
388 B
JavaScript

import styled from "styled-components";
import Base from "../../themes/base";
export const Weekday = styled.span`
pointer-events: none;
font-family: "Open Sans";
font-weight: 400;
font-size: 16px;
line-height: 16px;
color: ${(props) => props.theme.calendar.weekdayColor};
width: 40px;
text-align: center;
padding: 10.7px 0;
`;
Weekday.defaultProps = { theme: Base };