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

23 lines (20 loc) 544 B
import { CSSObject } from "@emotion/react"; import { MediaQueryType } from "../piece/MediaQueryType"; import { ExcludedProps } from "../piece/PipeLinePropsType"; export interface SkeletonType { w?: number; h?: number; primaryColor?: string; moveColor?: string; radius?: number | string; } export interface SkeletonPropsType extends Omit< React.HTMLAttributes<HTMLDivElement>, "children" | "dir" | ExcludedProps >, SkeletonType { children?: never[]; _mq?: MediaQueryType<SkeletonType>; css?: CSSObject; }