From 459397e70553657b1bdaae9a2fd2721b03c09e8a Mon Sep 17 00:00:00 2001 From: Martin Bohal Date: Wed, 10 Jan 2024 11:50:17 +0100 Subject: [PATCH] Update blacklisted props that can be passed to native HTML elements using the transferProps principle --- src/components/_helpers/transferProps.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/components/_helpers/transferProps.js b/src/components/_helpers/transferProps.js index 5e61f710..6c63e889 100644 --- a/src/components/_helpers/transferProps.js +++ b/src/components/_helpers/transferProps.js @@ -1,7 +1,10 @@ export const transferProps = ({ children, className, + dangerouslySetInnerHTML, ref, + suppressContentEditableWarning, staticContext, + style, ...restProps }) => restProps;