UNPKG

@matthew.ngo/react-form-kit

Version:

Form Kit for React. It consists of a set of components that can be used to create complex forms in a simple and declarative way.

21 lines (20 loc) 1.02 kB
import { Direction, Alignment, Spacing, ListMode } from './types'; interface StyledListContainerProps { $direction: Direction; $alignment: Alignment; $spacing: Spacing; $maxHeight?: number | string; $maxWidth?: number | string; $mode: ListMode; $responsive: boolean; $wrapItems: boolean; } export declare const StyledListContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, StyledListContainerProps>> & string; export declare const StyledItem: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, { $hoverable?: boolean; $clickable?: boolean; $selectable?: boolean; $selected?: boolean; $mode: ListMode; }>> & string; export {};