Skip to content

Commit

Permalink
fix spread
Browse files Browse the repository at this point in the history
  • Loading branch information
amcdnl committed Apr 23, 2024
1 parent ce512db commit cd4135a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/symbols/nodes/SphereWithIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,13 @@ export const SphereWithIcon: FC<SphereWithIconProps> = ({
node,
active,
animated,
image
image,
selected
}) => (
<>
<Sphere
id={id}
selected={selected}
size={size}
opacity={opacity}
animated={animated}
Expand All @@ -33,6 +35,7 @@ export const SphereWithIcon: FC<SphereWithIconProps> = ({
<Icon
id={id}
image={image}
selected={selected}
size={size + 8}
opacity={opacity}
animated={animated}
Expand Down
3 changes: 3 additions & 0 deletions src/symbols/nodes/SphereWithSvg.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,13 @@ export const SphereWithSvg: FC<SphereWithSvgProps> = ({
active,
animated,
image,
selected,
...rest
}) => (
<>
<Sphere
id={id}
selected={selected}
size={size}
opacity={opacity}
animated={animated}
Expand All @@ -40,6 +42,7 @@ export const SphereWithSvg: FC<SphereWithSvgProps> = ({
<Svg
{...rest}
id={id}
selected={selected}
image={image}
size={size}
opacity={opacity}
Expand Down

0 comments on commit cd4135a

Please sign in to comment.