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