Skip to content

Commit f06af7a

Browse files
committed
fix: pass borderless prop to custom GenericPressable
1 parent 7dc5577 commit f06af7a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

packages/render-html/src/GenericPressable.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,10 @@ export default function GenericPressable({
1818
useSharedProps();
1919
if (UserProvidedPressable) {
2020
return (
21-
<UserProvidedPressable style={style} {...(otherProps as any)}>
21+
<UserProvidedPressable
22+
style={style}
23+
borderless={borderless}
24+
{...(otherProps as any)}>
2225
{children}
2326
</UserProvidedPressable>
2427
);

0 commit comments

Comments
 (0)