UNPKG

@expofp/floorplan

Version:

Interactive floor plan library for expos and events

15 lines 458 B
import './Radio.scss'; import React from 'react'; export interface RadioProps { name: string; label: string; value: string | number; checked?: boolean; disabled?: boolean; className?: string; ariaLabel?: string; onChange?: () => void; } declare const Radio: ({ name, label, value, checked, disabled, className, ariaLabel, onChange, }: RadioProps) => React.JSX.Element; export default Radio; //# sourceMappingURL=Radio.d.ts.map