nes-ui-react
Version:
A design system that paints the web in 8 bits.
7 lines (6 loc) • 346 B
TypeScript
/// <reference types="react" />
import { IdProps } from "./interface/IdProps";
import { StyleProps } from "./interface/StyleProps";
export interface HeaderProps extends StyleProps, IdProps, React.PropsWithChildren<any> {
}
export declare const Header: ({ id, style, className, children }: HeaderProps) => import("react/jsx-runtime").JSX.Element;