ar-design
Version:
AR Design is a (react | nextjs) ui library.
18 lines (17 loc) • 488 B
TypeScript
import React from "react";
import { IChildren } from "../../libs/types/IGlobalProps";
export interface ILayoutProps extends IChildren {
}
export interface IHeaderProps {
actions?: React.ReactNode;
}
export interface ILSiderProps {
image?: React.ReactElement<SVGElement | HTMLImageElement>;
text?: string | React.JSX.Element;
footer?: string;
}
export interface IMainProps extends IChildren {
}
export interface ISectionProps extends IChildren {
fullWidth?: boolean;
}