create-next-app-template
Version:
This is a template set up to create Next.js App with fast speed and high performance<br/> The current template is provided in a **page routing** structure.<br/>
16 lines (13 loc) • 411 B
text/typescript
import { CSSObject } from "@emotion/react";
import { MediaQueryType } from "../piece/MediaQueryType";
type SpacingType = { direc?: "row" | "column"; size?: number };
export interface SpacingPropsType
extends Omit<
React.HTMLAttributes<HTMLDivElement>,
"children" | "size" | "dir" | "color"
>,
SpacingType {
children?: never[];
_mq?: MediaQueryType<SpacingType>;
css?: CSSObject;
}