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/Stack.tsx | 62 ++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 packages/excalidraw/components/Stack.tsx (limited to 'packages/excalidraw/components/Stack.tsx') diff --git a/packages/excalidraw/components/Stack.tsx b/packages/excalidraw/components/Stack.tsx new file mode 100644 index 0000000..f45d471 --- /dev/null +++ b/packages/excalidraw/components/Stack.tsx @@ -0,0 +1,62 @@ +import "./Stack.scss"; + +import React, { forwardRef } from "react"; +import clsx from "clsx"; + +type StackProps = { + children: React.ReactNode; + gap?: number; + align?: "start" | "center" | "end" | "baseline"; + justifyContent?: "center" | "space-around" | "space-between"; + className?: string | boolean; + style?: React.CSSProperties; +}; + +const RowStack = forwardRef( + ( + { children, gap, align, justifyContent, className, style }: StackProps, + ref: React.ForwardedRef, + ) => { + return ( +
+ {children} +
+ ); + }, +); + +const ColStack = forwardRef( + ( + { children, gap, align, justifyContent, className, style }: StackProps, + ref: React.ForwardedRef, + ) => { + return ( +
+ {children} +
+ ); + }, +); + +export default { + Row: RowStack, + Col: ColStack, +}; -- cgit v1.2.3