@leebonggu/component-library
Version:
12 lines (11 loc) • 370 B
TypeScript
import React from 'react';
import { PropsWithChildren } from 'react';
import { Label } from './Label';
import { Input } from './Input';
import { Textarea } from './Textarea';
export interface FieldComposition {
Label: typeof Label;
Input: typeof Input;
Textarea: typeof Textarea;
}
export declare const Field: React.FC<PropsWithChildren> & FieldComposition;