UNPKG

@hhgtech/hhg-components

Version:
14 lines (13 loc) 463 B
import { CSSProperties, FC, PropsWithChildren } from 'react'; export type TextFieldProps = { shrink?: boolean; onChangeShrink?: (shrink: boolean) => void; className?: string; style?: CSSProperties; }; export declare const TextField: FC<PropsWithChildren<TextFieldProps>>; export type ChoiceFieldProps = { className?: string; style?: CSSProperties; }; export declare const ChoiceField: FC<PropsWithChildren<ChoiceFieldProps>>;