@@ -240,45 +240,45 @@ export type BlessedIntrinsicElementsPrefixed = {
240240// elements will collide with ones set in react defs.
241241
242242// augment react JSX when old JSX transform is used
243- declare global {
243+ declare module "react" {
244244 namespace JSX {
245245 interface ButtonHTMLAttributes < T >
246- extends React . HTMLAttributes < T > ,
246+ extends HTMLAttributes < T > ,
247247 Omit <
248248 DetailedBlessedProps < ButtonElement > ,
249249 'draggable' | 'onBlur' | 'onClick' | 'onFocus' | 'onResize' | 'ref' | 'style'
250250 > { }
251251
252252 interface TableHTMLAttributes < T >
253- extends React . HTMLAttributes < T > ,
253+ extends HTMLAttributes < T > ,
254254 Omit <
255255 DetailedBlessedProps < TableElement > ,
256256 'border' | 'draggable' | 'onBlur' | 'onClick' | 'onFocus' | 'onResize' | 'ref' | 'style'
257257 > { }
258258
259259 interface TextareaHTMLAttributes < T >
260- extends React . HTMLAttributes < T > ,
260+ extends HTMLAttributes < T > ,
261261 Omit <
262262 DetailedBlessedProps < TextElement > ,
263263 'draggable' | 'fill' | 'focusable' | 'onBlur' | 'onClick' | 'onFocus' | 'onResize' | 'ref' | 'style'
264264 > { }
265265
266266 interface InputHTMLAttributes < T >
267- extends React . HTMLAttributes < T > ,
267+ extends HTMLAttributes < T > ,
268268 Omit <
269269 DetailedBlessedProps < InputElement > ,
270270 'draggable' | 'onBlur' | 'onClick' | 'onFocus' | 'onResize' | 'ref' | 'style'
271271 > { }
272272
273273 interface SVGLineElementAttributes < T >
274- extends React . SVGProps < T > ,
274+ extends SVGProps < T > ,
275275 Omit <
276276 DetailedBlessedProps < LineElement > ,
277277 'focusable' | 'onBlur' | 'onClick' | 'onFocus' | 'onResize' | 'orientation' | 'ref' | 'style'
278278 > { }
279279
280280 interface SVGTextElementAttributes < T >
281- extends React . SVGProps < T > ,
281+ extends SVGProps < T > ,
282282 Omit <
283283 DetailedBlessedProps < TextElement > ,
284284 'fill' | 'focusable' | 'onBlur' | 'onClick' | 'onFocus' | 'onResize' | 'ref' | 'style'
0 commit comments