Skip to content

Commit

Permalink
fix(2d): fix layout gap prop type (#1039)
Browse files Browse the repository at this point in the history
Closes: #1032
  • Loading branch information
Josephine19001 committed May 3, 2024
1 parent 696fbad commit 944b48f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/2d/src/lib/components/Layout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export interface LayoutProps extends NodeProps {
alignSelf?: SignalValue<FlexItems>;
rowGap?: SignalValue<Length>;
columnGap?: SignalValue<Length>;
gap?: SignalValue<Length>;
gap?: SignalValue<PossibleVector2<Length>>;

fontFamily?: SignalValue<string>;
fontSize?: SignalValue<number>;
Expand Down

0 comments on commit 944b48f

Please sign in to comment.