import React from 'react'; import './RadioCard.css'; export default function RadioCard({ options = [], value, cols = 3, onChange }) { return (
{options.map((o, i) => (
onChange && onChange(o.value)} > {o.icon ?
{o.icon}
: null}
{o.label}
{o.desc ?
{o.desc}
: null}
))}
); }