@vnmfify/core
Version:
```shell npm i @vnmfify/core -S ```
15 lines (14 loc) • 432 B
TypeScript
import { ViewProps } from "@vnxjs/components/types/View";
import { ReactNode } from "react";
declare type RadioShape = "square" | "round";
export interface RadioProps extends ViewProps {
className?: string;
name?: any;
disabled?: boolean;
shape?: RadioShape;
icon?: ReactNode;
size?: number;
children?: ReactNode;
}
export default function Radio(props: RadioProps): JSX.Element;
export {};