@hhgtech/hhg-components
Version:
Hello Health Group common components
14 lines (13 loc) • 463 B
TypeScript
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>>;