import * as React from "react"; import { RadioButton } from "./RadioButton"; import { Box } from "./Box"; import { Col } from "./Col"; import { StructureProps } from "./system/unions"; export type StatelessRadioButtonFieldProps = { selected?: boolean; hasError?: boolean; disabled?: boolean; name: string; } & React.HTMLAttributes & StructureProps; export const StatelessRadioButtonField = ({ selected, disabled, hasError, onChange, children, name, ...props }: StatelessRadioButtonFieldProps) => { return ( {children} ); }; StatelessRadioButtonField.displayName = "StatelessRadioButtonField";