UNPKG

watercolor-ui

Version:

A modern minimalist cross-framework component library

20 lines 752 B
import { default as React } from 'react'; export const FormControlContext: React.Context<null>; export default FormControl; declare function FormControl({ disabled, error, required, variant, size, fullWidth, margin, className, style, children, ...props }: { [x: string]: any; disabled?: boolean | undefined; error?: boolean | undefined; required?: boolean | undefined; variant?: string | undefined; size?: string | undefined; fullWidth?: boolean | undefined; margin?: string | undefined; className?: string | undefined; style?: {} | undefined; children: any; }): import("react/jsx-runtime").JSX.Element; declare namespace FormControl { let displayName: string; } //# sourceMappingURL=FormControl.d.ts.map