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/ButtonIcon.tsx | 37 +++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 packages/excalidraw/components/ButtonIcon.tsx (limited to 'packages/excalidraw/components/ButtonIcon.tsx') diff --git a/packages/excalidraw/components/ButtonIcon.tsx b/packages/excalidraw/components/ButtonIcon.tsx new file mode 100644 index 0000000..cbbd73d --- /dev/null +++ b/packages/excalidraw/components/ButtonIcon.tsx @@ -0,0 +1,37 @@ +import { forwardRef } from "react"; +import type { JSX } from "react"; +import clsx from "clsx"; + +import "./ButtonIcon.scss"; + +interface ButtonIconProps { + icon: JSX.Element; + title: string; + className?: string; + testId?: string; + /** if not supplied, defaults to value identity check */ + active?: boolean; + /** include standalone style (could interfere with parent styles) */ + standalone?: boolean; + onClick: (event: React.MouseEvent) => void; +} + +export const ButtonIcon = forwardRef( + (props, ref) => { + const { title, className, testId, active, standalone, icon, onClick } = + props; + return ( + + ); + }, +); -- cgit v1.2.3