@easykit/design
Version:
Easy kit design components
6 lines (5 loc) • 399 B
TypeScript
import * as React from "react";
import * as RadioGroupPrimitive from "@radix-ui/react-radio-group";
declare function RadioGroup({ className, ...props }: React.ComponentProps<typeof RadioGroupPrimitive.Root>): React.JSX.Element;
declare function RadioGroupItem({ className, ...props }: React.ComponentProps<typeof RadioGroupPrimitive.Item>): React.JSX.Element;
export { RadioGroup, RadioGroupItem };