fui-fancyui
Version:
FancyUI Libary
31 lines (28 loc) • 630 B
JavaScript
import { styled as a } from "styled-components";
const t = a.div`
display: flex;
flex-direction: column;
gap: ${({ theme: r }) => r.spacing.sm};
margin-bottom: ${({ theme: r }) => r.spacing.md};
`, e = a.table`
display: grid;
gap: ${({ theme: r }) => r.spacing.xs};
tbody {
display: grid;
grid-template-rows: repeat(4, 1fr);
gap: ${({ theme: r }) => r.spacing.xs};
}
tr {
display: grid;
grid-template-columns: repeat(7, 1fr);
}
`, p = a.span`
text-align: right;
cursor: pointer;
box-sizing: border-box;
`;
export {
t as CalendarWrapper,
p as DateNumber,
e as DaysContainer
};