UNPKG

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/>

26 lines (23 loc) 654 B
import { CSSObject } from "@emotion/react"; import { MediaQueryType } from "../piece/MediaQueryType"; import { ExcludedProps } from "../piece/PipeLinePropsType"; import { TrafficType } from "../piece/TrafficType"; // Divider export interface DividerType { direc?: "horizontal" | "vertical"; w?: number | string; h?: number | string; color?: string; radius?: number | string; spacing?: TrafficType; } export interface DividerPropsType extends Omit< React.HTMLAttributes<HTMLDivElement>, "children" | "dir" | ExcludedProps >, DividerType { children?: never[]; _mq?: MediaQueryType<DividerType>; css?: CSSObject; }