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/>
19 lines (16 loc) • 354 B
text/typescript
import { ComponentPropsWithoutRef } from "react";
import { LayoutElementType } from "./LayoutElementType";
export type LayoutPropsRef = Omit<
ComponentPropsWithoutRef<LayoutElementType>,
ExcludedProps
>;
export type ExcludedProps =
| "size"
| "sizes"
| "color"
| "title"
| "hidden"
| "title"
| "translate"
| "radioGroup"
| "dir";