UNPKG

@hhgtech/hhg-components

Version:
9 lines (8 loc) 358 B
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 };