geoiq-frontend-ui-kit
Version:
This project is a UI kit for GeoIQ's frontend. It's built with React, TypeScript, and Vite.
17 lines (16 loc) • 530 B
TypeScript
import { VariantProps } from 'class-variance-authority';
import { RadioGroupVariants } from './radio-group-style';
import { ReactNode } from 'react';
export interface RadioGroupProps extends React.HTMLAttributes<HTMLInputElement>, VariantProps<typeof RadioGroupVariants> {
disabled?: boolean;
children?: ReactNode | ReactNode[];
id?: string;
}
export type RadioGroupOptions = {
options: Options[];
};
export type Options = {
value: string;
label: string;
};
//# sourceMappingURL=radio-group.types.d.ts.map