UNPKG

@actinc/dls

Version:

Design Language System (DLS) for ACT & Encoura front-end projects.

20 lines 848 B
/** * Copyright (c) ACT, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import { FormControlProps, RadioGroupProps } from '@mui/material'; import { ReactElement } from 'react'; import { FormRadioProps } from "../FormRadio"; import { InputLabelProps } from "../InputLabel"; export type FormRadioGroupProps = RadioGroupProps & { formControlProps?: FormControlProps; helpText?: string; inputLabelProps?: InputLabelProps; label: string; options: FormRadioProps[]; }; export declare function FormRadioGroup({ formControlProps, helpText, inputLabelProps, label, name, options, ...radioGroupProps }: FormRadioGroupProps): ReactElement<FormRadioGroupProps>; export default FormRadioGroup; //# sourceMappingURL=index.d.ts.map