Common Props 🚧
Props¶
These special React props are supported for all built-in components:
-  
children: A React node (an element, a string, a number, a portal, an empty node likenull,undefinedand booleans, or an array of other React nodes). Specifies the content inside the component. When you use JSX, you will usually specify thechildrenprop implicitly by nesting tags like<div><span /></div>. -  
dangerouslySetInnerHTML: An object of the form{ __html: '<p>some html</p>' }with a raw HTML string inside. Overrides theinnerHTMLproperty of the DOM node and displays the passed HTML inside. This should be used with extreme caution! If the HTML inside isn't trusted (for example, if it's based on user data), you risk introducing an XSS vulnerability. Read more about usingdangerouslySetInnerHTML. -  
ref: A ref object fromuseReforcreateRef, or arefcallback function, or a string for legacy refs. Your ref will be filled with the DOM element for this node. Read more about manipulating the DOM with refs. -  
suppressContentEditableWarning: A boolean. Iftrue, suppresses the warning that React shows for elements that both havechildrenandcontentEditable={true}(which normally do not work together). Use this if you're building a text input library that manages thecontentEditablecontent manually. -  
suppressHydrationWarning: A boolean. If you use server rendering, normally there is a warning when the server and the client render different content. In some rare cases (like timestamps), it is very hard or impossible to guarantee an exact match. If you setsuppressHydrationWarningtotrue, React will not warn you about mismatches in the attributes and the content of that element. It only works one level deep, and is intended to be used as an escape hatch. Don't overuse it. Read about suppressing hydration errors. -  
style: An object with CSS styles, for example{ fontWeight: 'bold', margin: 20 }. Similarly to the DOMstyleproperty, the CSS property names need to be written ascamelCase, for examplefontWeightinstead offont-weight. You can pass strings or numbers as values. If you pass a number, likewidth: 100, React will automatically appendpx("pixels") to the value unless it's a unitless property. We recommend usingstyleonly for dynamic styles where you don't know the style values ahead of time. In other cases, applying plain CSS classes withclassNameis more efficient. Read more aboutclassNameandstyle. 
These standard DOM props are also supported for all built-in components:
accessKey: A string. Specifies a keyboard shortcut for the element. Not generally recommended.aria-*: ARIA attributes let you specify the accessibility tree information for this element. See ARIA attributes for a complete reference. In React, all ARIA attribute names are exactly the same as in HTML.autoCapitalize: A string. Specifies whether and how the user input should be capitalized.className: A string. Specifies the element's CSS class name. Read more about applying CSS styles.contentEditable: A boolean. Iftrue, the browser lets the user edit the rendered element directly. This is used to implement rich text input libraries like Lexical. React warns if you try to pass React children to an element withcontentEditable={true}because React will not be able to update its content after user edits.data-*: Data attributes let you attach some string data to the element, for exampledata-fruit="banana". In React, they are not commonly used because you would usually read data from props or state instead.dir: Either'ltr'or'rtl'. Specifies the text direction of the element.draggable: A boolean. Specifies whether the element is draggable. Part of HTML Drag and Drop API.enterKeyHint: A string. Specifies which action to present for the enter key on virtual keyboards.htmlFor: A string. For<label>and<output>, lets you associate the label with some control. Same asforHTML attribute. React uses the standard DOM property names (htmlFor) instead of HTML attribute names.hidden: A boolean or a string. Specifies whether the element should be hidden.id: A string. Specifies a unique identifier for this element, which can be used to find it later or connect it with other elements. Generate it withuseIdto avoid clashes between multiple instances of the same component.is: A string. If specified, the component will behave like a custom element.inputMode: A string. Specifies what kind of keyboard to display (for example, text, number or telephone).itemProp: A string. Specifies which property the element represents for structured data crawlers.lang: A string. Specifies the language of the element.onAnimationEnd: AnAnimationEventhandler function. Fires when a CSS animation completes.onAnimationEndCapture: A version ofonAnimationEndthat fires in the capture phase.onAnimationIteration: AnAnimationEventhandler function. Fires when an iteration of a CSS animation ends, and another one begins.onAnimationIterationCapture: A version ofonAnimationIterationthat fires in the capture phase.onAnimationStart: AnAnimationEventhandler function. Fires when a CSS animation starts.onAnimationStartCapture:onAnimationStart, but fires in the capture phase.onAuxClick: AMouseEventhandler function. Fires when a non-primary pointer button was clicked.onAuxClickCapture: A version ofonAuxClickthat fires in the capture phase.onBeforeInput: AnInputEventhandler function. Fires before the value of an editable element is modified. React does not yet use the nativebeforeinputevent, and instead attempts to polyfill it using other events.onBeforeInputCapture: A version ofonBeforeInputthat fires in the capture phase.onBlur: AFocusEventhandler function. Fires when an element lost focus. Unlike the built-in browserblurevent, in React theonBlurevent bubbles.onBlurCapture: A version ofonBlurthat fires in the capture phase.onClick: AMouseEventhandler function. Fires when the primary button was clicked on the pointing device.onClickCapture: A version ofonClickthat fires in the capture phase.onCompositionStart: ACompositionEventhandler function. Fires when an input method editor starts a new composition session.onCompositionStartCapture: A version ofonCompositionStartthat fires in the capture phase.onCompositionEnd: ACompositionEventhandler function. Fires when an input method editor completes or cancels a composition session.onCompositionEndCapture: A version ofonCompositionEndthat fires in the capture phase.onCompositionUpdate: ACompositionEventhandler function. Fires when an input method editor receives a new character.onCompositionUpdateCapture: A version ofonCompositionUpdatethat fires in the capture phase.onContextMenu: AMouseEventhandler function. Fires when the user tries to open a context menu.onContextMenuCapture: A version ofonContextMenuthat fires in the capture phase.onCopy: AClipboardEventhandler function. Fires when the user tries to copy something into the clipboard.onCopyCapture: A version ofonCopythat fires in the capture phase.onCut: AClipboardEventhandler function. Fires when the user tries to cut something into the clipboard.onCutCapture: A version ofonCutthat fires in the capture phase.onDoubleClick: AMouseEventhandler function. Fires when the user clicks twice. Corresponds to the browserdblclickevent.onDoubleClickCapture: A version ofonDoubleClickthat fires in the capture phase.onDrag: ADragEventhandler function. Fires while the user is dragging something.onDragCapture: A version ofonDragthat fires in the capture phase.onDragEnd: ADragEventhandler function. Fires when the user stops dragging something.onDragEndCapture: A version ofonDragEndthat fires in the capture phase.onDragEnter: ADragEventhandler function. Fires when the dragged content enters a valid drop target.onDragEnterCapture: A version ofonDragEnterthat fires in the capture phase.onDragOver: ADragEventhandler function. Fires on a valid drop target while the dragged content is dragged over it. You must calle.preventDefault()here to allow dropping.onDragOverCapture: A version ofonDragOverthat fires in the capture phase.onDragStart: ADragEventhandler function. Fires when the user starts dragging an element.onDragStartCapture: A version ofonDragStartthat fires in the capture phase.onDrop: ADragEventhandler function. Fires when something is dropped on a valid drop target.onDropCapture: A version ofonDropthat fires in the capture phase.onFocus: AFocusEventhandler function. Fires when an element lost focus. Unlike the built-in browserfocusevent, in React theonFocusevent bubbles.onFocusCapture: A version ofonFocusthat fires in the capture phase.onGotPointerCapture: APointerEventhandler function. Fires when an element programmatically captures a pointer.onGotPointerCaptureCapture: A version ofonGotPointerCapturethat fires in the capture phase.onKeyDown: AKeyboardEventhandler function. Fires when a key is pressed.onKeyDownCapture: A version ofonKeyDownthat fires in the capture phase.onKeyPress: AKeyboardEventhandler function. Deprecated. UseonKeyDownoronBeforeInputinstead.onKeyPressCapture: A version ofonKeyPressthat fires in the capture phase.onKeyUp: AKeyboardEventhandler function. Fires when a key is released.onKeyUpCapture: A version ofonKeyUpthat fires in the capture phase.onLostPointerCapture: APointerEventhandler function. Fires when an element stops capturing a pointer.onLostPointerCaptureCapture: A version ofonLostPointerCapturethat fires in the capture phase.onMouseDown: AMouseEventhandler function. Fires when the pointer is pressed down.onMouseDownCapture: A version ofonMouseDownthat fires in the capture phase.onMouseEnter: AMouseEventhandler function. Fires when the pointer moves inside an element. Does not have a capture phase. Instead,onMouseLeaveandonMouseEnterpropagate from the element being left to the one being entered.onMouseLeave: AMouseEventhandler function. Fires when the pointer moves outside an element. Does not have a capture phase. Instead,onMouseLeaveandonMouseEnterpropagate from the element being left to the one being entered.onMouseMove: AMouseEventhandler function. Fires when the pointer changes coordinates.onMouseMoveCapture: A version ofonMouseMovethat fires in the capture phase.onMouseOut: AMouseEventhandler function. Fires when the pointer moves outside an element, or if it moves into a child element.onMouseOutCapture: A version ofonMouseOutthat fires in the capture phase.onMouseUp: AMouseEventhandler function. Fires when the pointer is released.onMouseUpCapture: A version ofonMouseUpthat fires in the capture phase.onPointerCancel: APointerEventhandler function. Fires when the browser cancels a pointer interaction.onPointerCancelCapture: A version ofonPointerCancelthat fires in the capture phase.onPointerDown: APointerEventhandler function. Fires when a pointer becomes active.onPointerDownCapture: A version ofonPointerDownthat fires in the capture phase.onPointerEnter: APointerEventhandler function. Fires when a pointer moves inside an element. Does not have a capture phase. Instead,onPointerLeaveandonPointerEnterpropagate from the element being left to the one being entered.onPointerLeave: APointerEventhandler function. Fires when a pointer moves outside an element. Does not have a capture phase. Instead,onPointerLeaveandonPointerEnterpropagate from the element being left to the one being entered.onPointerMove: APointerEventhandler function. Fires when a pointer changes coordinates.onPointerMoveCapture: A version ofonPointerMovethat fires in the capture phase.onPointerOut: APointerEventhandler function. Fires when a pointer moves outside an element, if the pointer interaction is cancelled, and a few other reasons.onPointerOutCapture: A version ofonPointerOutthat fires in the capture phase.onPointerUp: APointerEventhandler function. Fires when a pointer is no longer active.onPointerUpCapture: A version ofonPointerUpthat fires in the capture phase.onPaste: AClipboardEventhandler function. Fires when the user tries to paste something from the clipboard.onPasteCapture: A version ofonPastethat fires in the capture phase.onScroll: AnEventhandler function. Fires when an element has been scrolled. This event does not bubble.onScrollCapture: A version ofonScrollthat fires in the capture phase.onSelect: AnEventhandler function. Fires after the selection inside an editable element like an input changes. React extends theonSelectevent to work forcontentEditable={true}elements as well. In addition, React extends it to fire for empty selection and on edits (which may affect the selection).onSelectCapture: A version ofonSelectthat fires in the capture phase.onTouchCancel: ATouchEventhandler function. Fires when the browser cancels a touch interaction.onTouchCancelCapture: A version ofonTouchCancelthat fires in the capture phase.onTouchEnd: ATouchEventhandler function. Fires when one or more touch points are removed.onTouchEndCapture: A version ofonTouchEndthat fires in the capture phase.onTouchMove: ATouchEventhandler function. Fires one or more touch points are moved.onTouchMoveCapture: A version ofonTouchMovethat fires in the capture phase.onTouchStart: ATouchEventhandler function. Fires when one or more touch points are placed.onTouchStartCapture: A version ofonTouchStartthat fires in the capture phase.onTransitionEnd: ATransitionEventhandler function. Fires when a CSS transition completes.onTransitionEndCapture: A version ofonTransitionEndthat fires in the capture phase.onWheel: AWheelEventhandler function. Fires when the user rotates a wheel button.onWheelCapture: A version ofonWheelthat fires in the capture phase.role: A string. Specifies the element role explicitly for assistive technologies. nt.slot: A string. Specifies the slot name when using shadow DOM. In React, an equivalent pattern is typically achieved by passing JSX as props, for example<Layout left={<Sidebar />} right={<Content />} />.spellCheck: A boolean or null. If explicitly set totrueorfalse, enables or disables spellchecking.tabIndex: A number. Overrides the default Tab button behavior. Avoid using values other than-1and0.title: A string. Specifies the tooltip text for the element.translate: Either'yes'or'no'. Passing'no'excludes the element content from being translated.
You can also pass custom attributes as props, for example mycustomprop="someValue". This can be useful when integrating with third-party libraries. The custom attribute name must be lowercase and must not start with on. The value will be converted to a string. If you pass null or undefined, the custom attribute will be removed.
These events fire only for the <form> elements:
onReset: AnEventhandler function. Fires when a form gets reset.onResetCapture: A version ofonResetthat fires in the capture phase.onSubmit: AnEventhandler function. Fires when a form gets submitted.onSubmitCapture: A version ofonSubmitthat fires in the capture phase.
These events fire only for the <dialog> elements. Unlike browser events, they bubble in React:
onCancel: AnEventhandler function. Fires when the user tries to dismiss the dialog.onCancelCapture: A version ofonCancelthat fires in the capture phase. capture-phase-events)onClose: AnEventhandler function. Fires when a dialog has been closed.onCloseCapture: A version ofonClosethat fires in the capture phase.
These events fire only for the <details> elements. Unlike browser events, they bubble in React:
onToggle: AnEventhandler function. Fires when the user toggles the details.onToggleCapture: A version ofonTogglethat fires in the capture phase. capture-phase-events)
These events fire for <img>, <iframe>, <object>, <embed>, <link>, and SVG <image> elements. Unlike browser events, they bubble in React:
onLoad: AnEventhandler function. Fires when the resource has loaded.onLoadCapture: A version ofonLoadthat fires in the capture phase.onError: AnEventhandler function. Fires when the resource could not be loaded.onErrorCapture: A version ofonErrorthat fires in the capture phase.
These events fire for resources like <audio> and <video>. Unlike browser events, they bubble in React:
onAbort: AnEventhandler function. Fires when the resource has not fully loaded, but not due to an error.onAbortCapture: A version ofonAbortthat fires in the capture phase.onCanPlay: AnEventhandler function. Fires when there's enough data to start playing, but not enough to play to the end without buffering.onCanPlayCapture: A version ofonCanPlaythat fires in the capture phase.onCanPlayThrough: AnEventhandler function. Fires when there's enough data that it's likely possible to start playing without buffering until the end.onCanPlayThroughCapture: A version ofonCanPlayThroughthat fires in the capture phase.onDurationChange: AnEventhandler function. Fires when the media duration has updated.onDurationChangeCapture: A version ofonDurationChangethat fires in the capture phase.onEmptied: AnEventhandler function. Fires when the media has become empty.onEmptiedCapture: A version ofonEmptiedthat fires in the capture phase.onEncrypted: AnEventhandler function. Fires when the browser encounters encrypted media.onEncryptedCapture: A version ofonEncryptedthat fires in the capture phase.onEnded: AnEventhandler function. Fires when the playback stops because there's nothing left to play.onEndedCapture: A version ofonEndedthat fires in the capture phase.onError: AnEventhandler function. Fires when the resource could not be loaded.onErrorCapture: A version ofonErrorthat fires in the capture phase.onLoadedData: AnEventhandler function. Fires when the current playback frame has loaded.onLoadedDataCapture: A version ofonLoadedDatathat fires in the capture phase.onLoadedMetadata: AnEventhandler function. Fires when metadata has loaded.onLoadedMetadataCapture: A version ofonLoadedMetadatathat fires in the capture phase.onLoadStart: AnEventhandler function. Fires when the browser started loading the resource.onLoadStartCapture: A version ofonLoadStartthat fires in the capture phase.onPause: AnEventhandler function. Fires when the media was paused.onPauseCapture: A version ofonPausethat fires in the capture phase.onPlay: AnEventhandler function. Fires when the media is no longer paused.onPlayCapture: A version ofonPlaythat fires in the capture phase.onPlaying: AnEventhandler function. Fires when the media starts or restarts playing.onPlayingCapture: A version ofonPlayingthat fires in the capture phase.onProgress: AnEventhandler function. Fires periodically while the resource is loading.onProgressCapture: A version ofonProgressthat fires in the capture phase.onRateChange: AnEventhandler function. Fires when playback rate changes.onRateChangeCapture: A version ofonRateChangethat fires in the capture phase.onResize: AnEventhandler function. Fires when video changes size.onResizeCapture: A version ofonResizethat fires in the capture phase.onSeeked: AnEventhandler function. Fires when a seek operation completes.onSeekedCapture: A version ofonSeekedthat fires in the capture phase.onSeeking: AnEventhandler function. Fires when a seek operation starts.onSeekingCapture: A version ofonSeekingthat fires in the capture phase.onStalled: AnEventhandler function. Fires when the browser is waiting for data but it keeps not loading.onStalledCapture: A version ofonStalledthat fires in the capture phase.onSuspend: AnEventhandler function. Fires when loading the resource was suspended.onSuspendCapture: A version ofonSuspendthat fires in the capture phase.onTimeUpdate: AnEventhandler function. Fires when the current playback time updates.onTimeUpdateCapture: A version ofonTimeUpdatethat fires in the capture phase.onVolumeChange: AnEventhandler function. Fires when the volume has changed.onVolumeChangeCapture: A version ofonVolumeChangethat fires in the capture phase.onWaiting: AnEventhandler function. Fires when the playback stopped due to temporary lack of data.onWaitingCapture: A version ofonWaitingthat fires in the capture phase.
Caveats¶
- You cannot pass both 
childrenanddangerouslySetInnerHTMLat the same time. - Some events (like 
onAbortandonLoad) don't bubble in the browser, but bubble in React.