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

17 lines
367 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;
color: ${(props) => props.theme.calendar.weekdayColor};
width: 40px;
text-align: center;
padding: 10.7px 0;
`;
Weekday.defaultProps = { theme: Base };