@cn-ui/core
Version:
The @cn-ui/core is a collection of UI components and utilities for building modern web applications with SolidJS.
17 lines (16 loc) • 980 B
TypeScript
interface ContainerProps {
direction?: "row" | "col";
}
export declare const Container: import("solid-js").Component<import("@cn-ui/reactive").OriginComponentOutputType<ContainerProps, HTMLElement, string>>;
export declare const Main: import("solid-js").Component<import("@cn-ui/reactive").OriginComponentOutputType<unknown, HTMLElement, string>>;
export declare const Header: import("solid-js").Component<import("@cn-ui/reactive").OriginComponentOutputType<{
height?: string;
}, HTMLElement, string>>;
export declare const Aside: import("solid-js").Component<import("@cn-ui/reactive").OriginComponentOutputType<{
width?: string;
}, HTMLElement, string>>;
export declare const Footer: import("solid-js").Component<import("@cn-ui/reactive").OriginComponentOutputType<{
height?: string;
}, HTMLElement, string>>;
export declare const Center: import("solid-js").Component<import("@cn-ui/reactive").OriginComponentOutputType<unknown, HTMLElement, string>>;
export {};