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.

17 lines (16 loc) 1.19 kB
import { OrientationType, LabelPositionType, SpacingType } from './types'; interface StyledRadioGroupProps { $orientation: OrientationType; $disabled?: boolean; $error?: boolean; } interface StyledRadioItemProps { $labelPosition: LabelPositionType; $spacing: SpacingType; $disabled?: boolean; $error?: boolean; } export declare const StyledRadioGroup: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, StyledRadioGroupProps>> & string; export declare const StyledRadioItem: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>, StyledRadioItemProps>> & string; export declare const StyledError: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string; export {};