@hhgtech/hhg-components
Version:
Hello Health Group common components
9 lines (8 loc) • 358 B
TypeScript
import React from 'react';
import { Radio as MantineRadio, RadioProps as MantineRadioProps } from '@mantine/core';
export type RadioProps = MantineRadioProps;
export interface CompoundedComponent extends React.ForwardRefExoticComponent<RadioProps> {
Group: typeof MantineRadio.Group;
}
declare const Radio: CompoundedComponent;
export { Radio };