From 6ec259a0e71174651bae95d4628138bf6fd68742 Mon Sep 17 00:00:00 2001 From: kj_sh604 Date: Sun, 15 Mar 2026 16:19:35 -0400 Subject: refactor: packages/ --- packages/excalidraw/components/ButtonIconCycle.tsx | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 packages/excalidraw/components/ButtonIconCycle.tsx (limited to 'packages/excalidraw/components/ButtonIconCycle.tsx') diff --git a/packages/excalidraw/components/ButtonIconCycle.tsx b/packages/excalidraw/components/ButtonIconCycle.tsx new file mode 100644 index 0000000..b73a8ec --- /dev/null +++ b/packages/excalidraw/components/ButtonIconCycle.tsx @@ -0,0 +1,29 @@ +import type { JSX } from "react"; +import clsx from "clsx"; + +export const ButtonIconCycle = ({ + options, + value, + onChange, + group, +}: { + options: { value: T; text: string; icon: JSX.Element }[]; + value: T | null; + onChange: (value: T) => void; + group: string; +}) => { + const current = options.find((op) => op.value === value); + + const cycle = () => { + const index = options.indexOf(current!); + const next = (index + 1) % options.length; + onChange(options[next].value); + }; + + return ( + + ); +}; -- cgit v1.2.3