summaryrefslogtreecommitdiffstats
path: root/packages/excalidraw/components/RadioGroup.tsx
diff options
context:
space:
mode:
authorkj_sh6042026-03-15 16:19:35 -0400
committerkj_sh6042026-03-15 16:19:35 -0400
commit6ec259a0e71174651bae95d4628138bf6fd68742 (patch)
tree5e33c6a5ec091ecabfcb257fdc7b6a88ed8754ac /packages/excalidraw/components/RadioGroup.tsx
parent16c8578b15c727f22921f8a80a56ee4d4e7f2272 (diff)
refactor: packages/
Diffstat (limited to 'packages/excalidraw/components/RadioGroup.tsx')
-rw-r--r--packages/excalidraw/components/RadioGroup.tsx45
1 files changed, 45 insertions, 0 deletions
diff --git a/packages/excalidraw/components/RadioGroup.tsx b/packages/excalidraw/components/RadioGroup.tsx
new file mode 100644
index 0000000..64d4d58
--- /dev/null
+++ b/packages/excalidraw/components/RadioGroup.tsx
@@ -0,0 +1,45 @@
+import clsx from "clsx";
+import "./RadioGroup.scss";
+
+export type RadioGroupChoice<T> = {
+ value: T;
+ label: React.ReactNode;
+ ariaLabel?: string;
+};
+
+export type RadioGroupProps<T> = {
+ choices: RadioGroupChoice<T>[];
+ value: T;
+ onChange: (value: T) => void;
+ name: string;
+};
+
+export const RadioGroup = function <T>({
+ onChange,
+ value,
+ choices,
+ name,
+}: RadioGroupProps<T>) {
+ return (
+ <div className="RadioGroup">
+ {choices.map((choice) => (
+ <div
+ className={clsx("RadioGroup__choice", {
+ active: choice.value === value,
+ })}
+ key={String(choice.value)}
+ title={choice.ariaLabel}
+ >
+ <input
+ name={name}
+ type="radio"
+ checked={choice.value === value}
+ onChange={() => onChange(choice.value)}
+ aria-label={choice.ariaLabel}
+ />
+ {choice.label}
+ </div>
+ ))}
+ </div>
+ );
+};