fui-fancyui
Version:
FancyUI Libary
14 lines (13 loc) • 311 B
JavaScript
import { styled as e } from "styled-components";
const n = e.div`
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: ${({ theme: t }) => t.spacing.xxs};
${({ $externalStyle: t }) => t}
`;
export {
n as StyledDateNumberWithStatus
};