import { CSSObject } from "@emotion/react"; import { MediaQueryType } from "../piece/MediaQueryType"; type SpacingType = { direc?: "row" | "column"; size?: number }; export interface SpacingPropsType extends Omit< React.HTMLAttributes, "children" | "size" | "dir" | "color" >, SpacingType { children?: never[]; _mq?: MediaQueryType; css?: CSSObject; }