import React from "react"; import clsx from "clsx"; export const ButtonSelect = ({ options, value, onChange, group, }: { options: { value: T; text: string }[]; value: T | null; onChange: (value: T) => void; group: string; }) => (
{options.map((option) => ( ))}
);