@hhgtech/hhg-components
Version:
Hello Health Group common components
10 lines (9 loc) • 484 B
TypeScript
import React, { ComponentType } from 'react';
import { TextProps } from "../../../../../mantine";
type Props = {
LabelWrapper?: ComponentType<TextProps>;
} & TextProps;
export declare const Question1Label: ({ LabelWrapper, ...props }: Props) => React.JSX.Element;
export declare const Question2Label: ({ LabelWrapper, ...props }: Props) => React.JSX.Element;
export declare const Question2Description: ({ LabelWrapper, ...props }: Props) => React.JSX.Element;
export {};