UNPKG

@cn-ui/core

Version:

The @cn-ui/core is a collection of UI components and utilities for building modern web applications with SolidJS.

15 lines (14 loc) 550 B
import type { JSX, JSXElement } from "solid-js"; export interface FlexProps { vertical?: boolean; reverse?: boolean; fill?: boolean; full?: boolean; wrap?: JSX.CSSProperties["flex-wrap"]; justify?: JSX.CSSProperties["justify-content"]; align?: JSX.CSSProperties["align-items"]; flex?: JSX.CSSProperties["flex"]; gap?: JSX.CSSProperties["gap"]; children: JSXElement; } export declare const Flex: import("solid-js").Component<import("@cn-ui/reactive").OriginComponentOutputType<FlexProps, HTMLElement, string>>;