---
title: Script
description: >-
  Use the `Script` component to add third-party scripts to your app. It
  automatically adds a nonce attribute from your [content security
  policy](/docs/custom-storefronts/hydrogen/content-security-policy). If you
  load a script that directly modifies the DOM, you are likely to have hydration
  errors. Use the `waitForHydration` prop to load the script after the page
  hydrates.
api_version: 2024-07
api_name: hydrogen
source_url:
  html: 'https://shopify.dev/docs/api/hydrogen/2024-07/components/script'
  md: 'https://shopify.dev/docs/api/hydrogen/2024-07/components/script.md'
---

# Script

Use the `Script` component to add third-party scripts to your app. It automatically adds a nonce attribute from your [content security policy](https://shopify.dev/docs/custom-storefronts/hydrogen/content-security-policy). If you load a script that directly modifies the DOM, you are likely to have hydration errors. Use the `waitForHydration` prop to load the script after the page hydrates.

## Props

**`HydrogenScriptProps & ScriptAttributes`**

### HydrogenScriptProps

* **waitForHydration**

  **boolean**

  Wait to load the script until after the page hydrates. This prevents hydration errors for scripts that modify the DOM. Note: For security, `nonce` is not supported when using `waitForHydration`. Instead you need to add the domain of the script directly to your [Content Securitiy Policy directives](https://shopify.dev/docs/storefronts/headless/hydrogen/content-security-policy#step-3-customize-the-content-security-policy).

### ScriptAttributes

* **about**

  **string | undefined**

* **accessKey**

  **string | undefined**

* **aria-activedescendant**

  **string | undefined**

  Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.

* **aria-atomic**

  **Booleanish | undefined**

  Indicates whether assistive technologies will present all, or only parts of, the changed region based on the change notifications defined by the aria-relevant attribute.

* **aria-autocomplete**

  **'none' | 'inline' | 'list' | 'both' | undefined**

  Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be presented if they are made.

* **aria-braillelabel**

  **string | undefined**

  Defines a string value that labels the current element, which is intended to be converted into Braille.

* **aria-brailleroledescription**

  **string | undefined**

  Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.

* **aria-busy**

  **Booleanish | undefined**

* **aria-checked**

  **boolean | 'false' | 'mixed' | 'true' | undefined**

  Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.

* **aria-colcount**

  **number | undefined**

  Defines the total number of columns in a table, grid, or treegrid.

* **aria-colindex**

  **number | undefined**

  Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.

* **aria-colindextext**

  **string | undefined**

  Defines a human readable text alternative of aria-colindex.

* **aria-colspan**

  **number | undefined**

  Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.

* **aria-controls**

  **string | undefined**

  Identifies the element (or elements) whose contents or presence are controlled by the current element.

* **aria-current**

  **boolean | 'false' | 'true' | 'page' | 'step' | 'location' | 'date' | 'time' | undefined**

  Indicates the element that represents the current item within a container or set of related elements.

* **aria-describedby**

  **string | undefined**

  Identifies the element (or elements) that describes the object.

* **aria-description**

  **string | undefined**

  Defines a string value that describes or annotates the current element.

* **aria-details**

  **string | undefined**

  Identifies the element that provides a detailed, extended description for the object.

* **aria-disabled**

  **Booleanish | undefined**

  Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.

* **aria-errormessage**

  **string | undefined**

  Identifies the element that provides an error message for the object.

* **aria-expanded**

  **Booleanish | undefined**

  Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.

* **aria-flowto**

  **string | undefined**

  Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion, allows assistive technology to override the general default of reading in document source order.

* **aria-haspopup**

  **boolean | 'false' | 'true' | 'menu' | 'listbox' | 'tree' | 'grid' | 'dialog' | undefined**

  Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.

* **aria-hidden**

  **Booleanish | undefined**

  Indicates whether the element is exposed to an accessibility API.

* **aria-invalid**

  **boolean | 'false' | 'true' | 'grammar' | 'spelling' | undefined**

  Indicates the entered value does not conform to the format expected by the application.

* **aria-keyshortcuts**

  **string | undefined**

  Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.

* **aria-label**

  **string | undefined**

  Defines a string value that labels the current element.

* **aria-labelledby**

  **string | undefined**

  Identifies the element (or elements) that labels the current element.

* **aria-level**

  **number | undefined**

  Defines the hierarchical level of an element within a structure.

* **aria-live**

  **'off' | 'assertive' | 'polite' | undefined**

  Indicates that an element will be updated, and describes the types of updates the user agents, assistive technologies, and user can expect from the live region.

* **aria-modal**

  **Booleanish | undefined**

  Indicates whether an element is modal when displayed.

* **aria-multiline**

  **Booleanish | undefined**

  Indicates whether a text box accepts multiple lines of input or only a single line.

* **aria-multiselectable**

  **Booleanish | undefined**

  Indicates that the user may select more than one item from the current selectable descendants.

* **aria-orientation**

  **'horizontal' | 'vertical' | undefined**

  Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.

* **aria-owns**

  **string | undefined**

  Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship between DOM elements where the DOM hierarchy cannot be used to represent the relationship.

* **aria-placeholder**

  **string | undefined**

  Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value. A hint could be a sample value or a brief description of the expected format.

* **aria-posinset**

  **number | undefined**

  Defines an element's number or position in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.

* **aria-pressed**

  **boolean | 'false' | 'mixed' | 'true' | undefined**

  Indicates the current "pressed" state of toggle buttons.

* **aria-readonly**

  **Booleanish | undefined**

  Indicates that the element is not editable, but is otherwise operable.

* **aria-relevant**

  **'additions' | 'additions removals' | 'additions text' | 'all' | 'removals' | 'removals additions' | 'removals text' | 'text' | 'text additions' | 'text removals' | undefined**

  Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.

* **aria-required**

  **Booleanish | undefined**

  Indicates that user input is required on the element before a form may be submitted.

* **aria-roledescription**

  **string | undefined**

  Defines a human-readable, author-localized description for the role of an element.

* **aria-rowcount**

  **number | undefined**

  Defines the total number of rows in a table, grid, or treegrid.

* **aria-rowindex**

  **number | undefined**

  Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.

* **aria-rowindextext**

  **string | undefined**

  Defines a human readable text alternative of aria-rowindex.

* **aria-rowspan**

  **number | undefined**

  Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.

* **aria-selected**

  **Booleanish | undefined**

  Indicates the current "selected" state of various widgets.

* **aria-setsize**

  **number | undefined**

  Defines the number of items in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.

* **aria-sort**

  **'none' | 'ascending' | 'descending' | 'other' | undefined**

  Indicates if items in a table or grid are sorted in ascending or descending order.

* **aria-valuemax**

  **number | undefined**

  Defines the maximum allowed value for a range widget.

* **aria-valuemin**

  **number | undefined**

  Defines the minimum allowed value for a range widget.

* **aria-valuenow**

  **number | undefined**

  Defines the current value for a range widget.

* **aria-valuetext**

  **string | undefined**

  Defines the human readable text alternative of aria-valuenow for a range widget.

* **async**

  **boolean | undefined**

* **autoCapitalize**

  **string | undefined**

* **autoCorrect**

  **string | undefined**

* **autoFocus**

  **boolean | undefined**

* **autoSave**

  **string | undefined**

* **children**

  **ReactNode | undefined**

* **className**

  **string | undefined**

* **color**

  **string | undefined**

* **content**

  **string | undefined**

* **contentEditable**

  **Booleanish | "inherit" | undefined**

* **contextMenu**

  **string | undefined**

* **crossOrigin**

  **CrossOrigin**

* **dangerouslySetInnerHTML**

  **{ // Should be InnerHTML\['innerHTML']. // But unfortunately we're mixing renderer-specific type declarations. \_\_html: string | TrustedHTML; } | undefined**

* **datatype**

  **string | undefined**

* **defaultChecked**

  **boolean | undefined**

* **defaultValue**

  **string | number | ReadonlyArray\<string> | undefined**

* **defer**

  **boolean | undefined**

* **dir**

  **string | undefined**

* **draggable**

  **Booleanish | undefined**

* **hidden**

  **boolean | undefined**

* **id**

  **string | undefined**

* **inlist**

  **any**

* **inputMode**

  **'none' | 'text' | 'tel' | 'url' | 'email' | 'numeric' | 'decimal' | 'search' | undefined**

  Hints at the type of data that might be entered by the user while editing the element or its contents

* **integrity**

  **string | undefined**

* **is**

  **string | undefined**

  Specify that a standard HTML element should behave like a defined custom built-in element

* **itemID**

  **string | undefined**

* **itemProp**

  **string | undefined**

* **itemRef**

  **string | undefined**

* **itemScope**

  **boolean | undefined**

* **itemType**

  **string | undefined**

* **lang**

  **string | undefined**

* **noModule**

  **boolean | undefined**

* **nonce**

  **string | undefined**

* **onAbort**

  **ReactEventHandler\<T> | undefined**

* **onAbortCapture**

  **ReactEventHandler\<T> | undefined**

* **onAnimationEnd**

  **AnimationEventHandler\<T> | undefined**

* **onAnimationEndCapture**

  **AnimationEventHandler\<T> | undefined**

* **onAnimationIteration**

  **AnimationEventHandler\<T> | undefined**

* **onAnimationIterationCapture**

  **AnimationEventHandler\<T> | undefined**

* **onAnimationStart**

  **AnimationEventHandler\<T> | undefined**

* **onAnimationStartCapture**

  **AnimationEventHandler\<T> | undefined**

* **onAuxClick**

  **MouseEventHandler\<T> | undefined**

* **onAuxClickCapture**

  **MouseEventHandler\<T> | undefined**

* **onBeforeInput**

  **FormEventHandler\<T> | undefined**

* **onBeforeInputCapture**

  **FormEventHandler\<T> | undefined**

* **onBlur**

  **FocusEventHandler\<T> | undefined**

* **onBlurCapture**

  **FocusEventHandler\<T> | undefined**

* **onCanPlay**

  **ReactEventHandler\<T> | undefined**

* **onCanPlayCapture**

  **ReactEventHandler\<T> | undefined**

* **onCanPlayThrough**

  **ReactEventHandler\<T> | undefined**

* **onCanPlayThroughCapture**

  **ReactEventHandler\<T> | undefined**

* **onChange**

  **FormEventHandler\<T> | undefined**

* **onChangeCapture**

  **FormEventHandler\<T> | undefined**

* **onClick**

  **MouseEventHandler\<T> | undefined**

* **onClickCapture**

  **MouseEventHandler\<T> | undefined**

* **onCompositionEnd**

  **CompositionEventHandler\<T> | undefined**

* **onCompositionEndCapture**

  **CompositionEventHandler\<T> | undefined**

* **onCompositionStart**

  **CompositionEventHandler\<T> | undefined**

* **onCompositionStartCapture**

  **CompositionEventHandler\<T> | undefined**

* **onCompositionUpdate**

  **CompositionEventHandler\<T> | undefined**

* **onCompositionUpdateCapture**

  **CompositionEventHandler\<T> | undefined**

* **onContextMenu**

  **MouseEventHandler\<T> | undefined**

* **onContextMenuCapture**

  **MouseEventHandler\<T> | undefined**

* **onCopy**

  **ClipboardEventHandler\<T> | undefined**

* **onCopyCapture**

  **ClipboardEventHandler\<T> | undefined**

* **onCut**

  **ClipboardEventHandler\<T> | undefined**

* **onCutCapture**

  **ClipboardEventHandler\<T> | undefined**

* **onDoubleClick**

  **MouseEventHandler\<T> | undefined**

* **onDoubleClickCapture**

  **MouseEventHandler\<T> | undefined**

* **onDrag**

  **DragEventHandler\<T> | undefined**

* **onDragCapture**

  **DragEventHandler\<T> | undefined**

* **onDragEnd**

  **DragEventHandler\<T> | undefined**

* **onDragEndCapture**

  **DragEventHandler\<T> | undefined**

* **onDragEnter**

  **DragEventHandler\<T> | undefined**

* **onDragEnterCapture**

  **DragEventHandler\<T> | undefined**

* **onDragExit**

  **DragEventHandler\<T> | undefined**

* **onDragExitCapture**

  **DragEventHandler\<T> | undefined**

* **onDragLeave**

  **DragEventHandler\<T> | undefined**

* **onDragLeaveCapture**

  **DragEventHandler\<T> | undefined**

* **onDragOver**

  **DragEventHandler\<T> | undefined**

* **onDragOverCapture**

  **DragEventHandler\<T> | undefined**

* **onDragStart**

  **DragEventHandler\<T> | undefined**

* **onDragStartCapture**

  **DragEventHandler\<T> | undefined**

* **onDrop**

  **DragEventHandler\<T> | undefined**

* **onDropCapture**

  **DragEventHandler\<T> | undefined**

* **onDurationChange**

  **ReactEventHandler\<T> | undefined**

* **onDurationChangeCapture**

  **ReactEventHandler\<T> | undefined**

* **onEmptied**

  **ReactEventHandler\<T> | undefined**

* **onEmptiedCapture**

  **ReactEventHandler\<T> | undefined**

* **onEncrypted**

  **ReactEventHandler\<T> | undefined**

* **onEncryptedCapture**

  **ReactEventHandler\<T> | undefined**

* **onEnded**

  **ReactEventHandler\<T> | undefined**

* **onEndedCapture**

  **ReactEventHandler\<T> | undefined**

* **onError**

  **ReactEventHandler\<T> | undefined**

* **onErrorCapture**

  **ReactEventHandler\<T> | undefined**

* **onFocus**

  **FocusEventHandler\<T> | undefined**

* **onFocusCapture**

  **FocusEventHandler\<T> | undefined**

* **onGotPointerCapture**

  **PointerEventHandler\<T> | undefined**

* **onGotPointerCaptureCapture**

  **PointerEventHandler\<T> | undefined**

* **onInput**

  **FormEventHandler\<T> | undefined**

* **onInputCapture**

  **FormEventHandler\<T> | undefined**

* **onInvalid**

  **FormEventHandler\<T> | undefined**

* **onInvalidCapture**

  **FormEventHandler\<T> | undefined**

* **onKeyDown**

  **KeyboardEventHandler\<T> | undefined**

* **onKeyDownCapture**

  **KeyboardEventHandler\<T> | undefined**

* **onKeyUp**

  **KeyboardEventHandler\<T> | undefined**

* **onKeyUpCapture**

  **KeyboardEventHandler\<T> | undefined**

* **onLoad**

  **ReactEventHandler\<T> | undefined**

* **onLoadCapture**

  **ReactEventHandler\<T> | undefined**

* **onLoadedData**

  **ReactEventHandler\<T> | undefined**

* **onLoadedDataCapture**

  **ReactEventHandler\<T> | undefined**

* **onLoadedMetadata**

  **ReactEventHandler\<T> | undefined**

* **onLoadedMetadataCapture**

  **ReactEventHandler\<T> | undefined**

* **onLoadStart**

  **ReactEventHandler\<T> | undefined**

* **onLoadStartCapture**

  **ReactEventHandler\<T> | undefined**

* **onLostPointerCapture**

  **PointerEventHandler\<T> | undefined**

* **onLostPointerCaptureCapture**

  **PointerEventHandler\<T> | undefined**

* **onMouseDown**

  **MouseEventHandler\<T> | undefined**

* **onMouseDownCapture**

  **MouseEventHandler\<T> | undefined**

* **onMouseEnter**

  **MouseEventHandler\<T> | undefined**

* **onMouseLeave**

  **MouseEventHandler\<T> | undefined**

* **onMouseMove**

  **MouseEventHandler\<T> | undefined**

* **onMouseMoveCapture**

  **MouseEventHandler\<T> | undefined**

* **onMouseOut**

  **MouseEventHandler\<T> | undefined**

* **onMouseOutCapture**

  **MouseEventHandler\<T> | undefined**

* **onMouseOver**

  **MouseEventHandler\<T> | undefined**

* **onMouseOverCapture**

  **MouseEventHandler\<T> | undefined**

* **onMouseUp**

  **MouseEventHandler\<T> | undefined**

* **onMouseUpCapture**

  **MouseEventHandler\<T> | undefined**

* **onPaste**

  **ClipboardEventHandler\<T> | undefined**

* **onPasteCapture**

  **ClipboardEventHandler\<T> | undefined**

* **onPause**

  **ReactEventHandler\<T> | undefined**

* **onPauseCapture**

  **ReactEventHandler\<T> | undefined**

* **onPlay**

  **ReactEventHandler\<T> | undefined**

* **onPlayCapture**

  **ReactEventHandler\<T> | undefined**

* **onPlaying**

  **ReactEventHandler\<T> | undefined**

* **onPlayingCapture**

  **ReactEventHandler\<T> | undefined**

* **onPointerCancel**

  **PointerEventHandler\<T> | undefined**

* **onPointerCancelCapture**

  **PointerEventHandler\<T> | undefined**

* **onPointerDown**

  **PointerEventHandler\<T> | undefined**

* **onPointerDownCapture**

  **PointerEventHandler\<T> | undefined**

* **onPointerEnter**

  **PointerEventHandler\<T> | undefined**

* **onPointerEnterCapture**

  **PointerEventHandler\<T> | undefined**

* **onPointerLeave**

  **PointerEventHandler\<T> | undefined**

* **onPointerLeaveCapture**

  **PointerEventHandler\<T> | undefined**

* **onPointerMove**

  **PointerEventHandler\<T> | undefined**

* **onPointerMoveCapture**

  **PointerEventHandler\<T> | undefined**

* **onPointerOut**

  **PointerEventHandler\<T> | undefined**

* **onPointerOutCapture**

  **PointerEventHandler\<T> | undefined**

* **onPointerOver**

  **PointerEventHandler\<T> | undefined**

* **onPointerOverCapture**

  **PointerEventHandler\<T> | undefined**

* **onPointerUp**

  **PointerEventHandler\<T> | undefined**

* **onPointerUpCapture**

  **PointerEventHandler\<T> | undefined**

* **onProgress**

  **ReactEventHandler\<T> | undefined**

* **onProgressCapture**

  **ReactEventHandler\<T> | undefined**

* **onRateChange**

  **ReactEventHandler\<T> | undefined**

* **onRateChangeCapture**

  **ReactEventHandler\<T> | undefined**

* **onReset**

  **FormEventHandler\<T> | undefined**

* **onResetCapture**

  **FormEventHandler\<T> | undefined**

* **onResize**

  **ReactEventHandler\<T> | undefined**

* **onResizeCapture**

  **ReactEventHandler\<T> | undefined**

* **onScroll**

  **UIEventHandler\<T> | undefined**

* **onScrollCapture**

  **UIEventHandler\<T> | undefined**

* **onSeeked**

  **ReactEventHandler\<T> | undefined**

* **onSeekedCapture**

  **ReactEventHandler\<T> | undefined**

* **onSeeking**

  **ReactEventHandler\<T> | undefined**

* **onSeekingCapture**

  **ReactEventHandler\<T> | undefined**

* **onSelect**

  **ReactEventHandler\<T> | undefined**

* **onSelectCapture**

  **ReactEventHandler\<T> | undefined**

* **onStalled**

  **ReactEventHandler\<T> | undefined**

* **onStalledCapture**

  **ReactEventHandler\<T> | undefined**

* **onSubmit**

  **FormEventHandler\<T> | undefined**

* **onSubmitCapture**

  **FormEventHandler\<T> | undefined**

* **onSuspend**

  **ReactEventHandler\<T> | undefined**

* **onSuspendCapture**

  **ReactEventHandler\<T> | undefined**

* **onTimeUpdate**

  **ReactEventHandler\<T> | undefined**

* **onTimeUpdateCapture**

  **ReactEventHandler\<T> | undefined**

* **onTouchCancel**

  **TouchEventHandler\<T> | undefined**

* **onTouchCancelCapture**

  **TouchEventHandler\<T> | undefined**

* **onTouchEnd**

  **TouchEventHandler\<T> | undefined**

* **onTouchEndCapture**

  **TouchEventHandler\<T> | undefined**

* **onTouchMove**

  **TouchEventHandler\<T> | undefined**

* **onTouchMoveCapture**

  **TouchEventHandler\<T> | undefined**

* **onTouchStart**

  **TouchEventHandler\<T> | undefined**

* **onTouchStartCapture**

  **TouchEventHandler\<T> | undefined**

* **onTransitionEnd**

  **TransitionEventHandler\<T> | undefined**

* **onTransitionEndCapture**

  **TransitionEventHandler\<T> | undefined**

* **onVolumeChange**

  **ReactEventHandler\<T> | undefined**

* **onVolumeChangeCapture**

  **ReactEventHandler\<T> | undefined**

* **onWaiting**

  **ReactEventHandler\<T> | undefined**

* **onWaitingCapture**

  **ReactEventHandler\<T> | undefined**

* **onWheel**

  **WheelEventHandler\<T> | undefined**

* **onWheelCapture**

  **WheelEventHandler\<T> | undefined**

* **placeholder**

  **string | undefined**

* **prefix**

  **string | undefined**

* **property**

  **string | undefined**

* **radioGroup**

  **string | undefined**

* **referrerPolicy**

  **HTMLAttributeReferrerPolicy | undefined**

* **rel**

  **string | undefined**

* **resource**

  **string | undefined**

* **results**

  **number | undefined**

* **rev**

  **string | undefined**

* **role**

  **AriaRole | undefined**

* **security**

  **string | undefined**

* **slot**

  **string | undefined**

* **spellCheck**

  **Booleanish | undefined**

* **src**

  **string | undefined**

* **style**

  **CSSProperties | undefined**

* **suppressContentEditableWarning**

  **boolean | undefined**

* **suppressHydrationWarning**

  **boolean | undefined**

* **tabIndex**

  **number | undefined**

* **title**

  **string | undefined**

* **translate**

  **'yes' | 'no' | undefined**

* **type**

  **string | undefined**

* **typeof**

  **string | undefined**

* **unselectable**

  **'on' | 'off' | undefined**

* **vocab**

  **string | undefined**

* **aria-dropeffect**

  **'none' | 'copy' | 'execute' | 'link' | 'move' | 'popup' | undefined**

  **deprecated**

  Indicates what functions can be performed when a dragged object is released on the drop target.

  **Deprecated:**

  in ARIA 1.1

* **aria-grabbed**

  **Booleanish | undefined**

  **deprecated**

  Indicates an element's "grabbed" state in a drag-and-drop operation.

  **Deprecated:**

  in ARIA 1.1

* **charSet**

  **string | undefined**

  **deprecated**

  **Deprecated:**

  Deprecated

* **onKeyPress**

  **KeyboardEventHandler\<T> | undefined**

  **deprecated**

  **Deprecated:**

  Deprecated

* **onKeyPressCapture**

  **KeyboardEventHandler\<T> | undefined**

  **deprecated**

  **Deprecated:**

  Deprecated

### HydrogenScriptProps

* waitForHydration

  Wait to load the script until after the page hydrates. This prevents hydration errors for scripts that modify the DOM. Note: For security, \`nonce\` is not supported when using \`waitForHydration\`. Instead you need to add the domain of the script directly to your \[Content Securitiy Policy directives]\(https://shopify.dev/docs/storefronts/headless/hydrogen/content-security-policy#step-3-customize-the-content-security-policy).

  ```ts
  boolean
  ```

### ScriptAttributes

* about

  ```ts
  string | undefined
  ```

* accessKey

  ```ts
  string | undefined
  ```

* aria-activedescendant

  Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.

  ```ts
  string | undefined
  ```

* aria-atomic

  Indicates whether assistive technologies will present all, or only parts of, the changed region based on the change notifications defined by the aria-relevant attribute.

  ```ts
  Booleanish | undefined
  ```

* aria-autocomplete

  Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be presented if they are made.

  ```ts
  'none' | 'inline' | 'list' | 'both' | undefined
  ```

* aria-braillelabel

  Defines a string value that labels the current element, which is intended to be converted into Braille.

  ```ts
  string | undefined
  ```

* aria-brailleroledescription

  Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.

  ```ts
  string | undefined
  ```

* aria-busy

  ```ts
  Booleanish | undefined
  ```

* aria-checked

  Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.

  ```ts
  boolean | 'false' | 'mixed' | 'true' | undefined
  ```

* aria-colcount

  Defines the total number of columns in a table, grid, or treegrid.

  ```ts
  number | undefined
  ```

* aria-colindex

  Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.

  ```ts
  number | undefined
  ```

* aria-colindextext

  Defines a human readable text alternative of aria-colindex.

  ```ts
  string | undefined
  ```

* aria-colspan

  Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.

  ```ts
  number | undefined
  ```

* aria-controls

  Identifies the element (or elements) whose contents or presence are controlled by the current element.

  ```ts
  string | undefined
  ```

* aria-current

  Indicates the element that represents the current item within a container or set of related elements.

  ```ts
  boolean | 'false' | 'true' | 'page' | 'step' | 'location' | 'date' | 'time' | undefined
  ```

* aria-describedby

  Identifies the element (or elements) that describes the object.

  ```ts
  string | undefined
  ```

* aria-description

  Defines a string value that describes or annotates the current element.

  ```ts
  string | undefined
  ```

* aria-details

  Identifies the element that provides a detailed, extended description for the object.

  ```ts
  string | undefined
  ```

* aria-disabled

  Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.

  ```ts
  Booleanish | undefined
  ```

* aria-dropeffect

  Indicates what functions can be performed when a dragged object is released on the drop target.

  ```ts
  'none' | 'copy' | 'execute' | 'link' | 'move' | 'popup' | undefined
  ```

* aria-errormessage

  Identifies the element that provides an error message for the object.

  ```ts
  string | undefined
  ```

* aria-expanded

  Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.

  ```ts
  Booleanish | undefined
  ```

* aria-flowto

  Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion, allows assistive technology to override the general default of reading in document source order.

  ```ts
  string | undefined
  ```

* aria-grabbed

  Indicates an element's "grabbed" state in a drag-and-drop operation.

  ```ts
  Booleanish | undefined
  ```

* aria-haspopup

  Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.

  ```ts
  boolean | 'false' | 'true' | 'menu' | 'listbox' | 'tree' | 'grid' | 'dialog' | undefined
  ```

* aria-hidden

  Indicates whether the element is exposed to an accessibility API.

  ```ts
  Booleanish | undefined
  ```

* aria-invalid

  Indicates the entered value does not conform to the format expected by the application.

  ```ts
  boolean | 'false' | 'true' | 'grammar' | 'spelling' | undefined
  ```

* aria-keyshortcuts

  Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.

  ```ts
  string | undefined
  ```

* aria-label

  Defines a string value that labels the current element.

  ```ts
  string | undefined
  ```

* aria-labelledby

  Identifies the element (or elements) that labels the current element.

  ```ts
  string | undefined
  ```

* aria-level

  Defines the hierarchical level of an element within a structure.

  ```ts
  number | undefined
  ```

* aria-live

  Indicates that an element will be updated, and describes the types of updates the user agents, assistive technologies, and user can expect from the live region.

  ```ts
  'off' | 'assertive' | 'polite' | undefined
  ```

* aria-modal

  Indicates whether an element is modal when displayed.

  ```ts
  Booleanish | undefined
  ```

* aria-multiline

  Indicates whether a text box accepts multiple lines of input or only a single line.

  ```ts
  Booleanish | undefined
  ```

* aria-multiselectable

  Indicates that the user may select more than one item from the current selectable descendants.

  ```ts
  Booleanish | undefined
  ```

* aria-orientation

  Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.

  ```ts
  'horizontal' | 'vertical' | undefined
  ```

* aria-owns

  Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship between DOM elements where the DOM hierarchy cannot be used to represent the relationship.

  ```ts
  string | undefined
  ```

* aria-placeholder

  Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value. A hint could be a sample value or a brief description of the expected format.

  ```ts
  string | undefined
  ```

* aria-posinset

  Defines an element's number or position in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.

  ```ts
  number | undefined
  ```

* aria-pressed

  Indicates the current "pressed" state of toggle buttons.

  ```ts
  boolean | 'false' | 'mixed' | 'true' | undefined
  ```

* aria-readonly

  Indicates that the element is not editable, but is otherwise operable.

  ```ts
  Booleanish | undefined
  ```

* aria-relevant

  Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.

  ```ts
  'additions' | 'additions removals' | 'additions text' | 'all' | 'removals' | 'removals additions' | 'removals text' | 'text' | 'text additions' | 'text removals' | undefined
  ```

* aria-required

  Indicates that user input is required on the element before a form may be submitted.

  ```ts
  Booleanish | undefined
  ```

* aria-roledescription

  Defines a human-readable, author-localized description for the role of an element.

  ```ts
  string | undefined
  ```

* aria-rowcount

  Defines the total number of rows in a table, grid, or treegrid.

  ```ts
  number | undefined
  ```

* aria-rowindex

  Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.

  ```ts
  number | undefined
  ```

* aria-rowindextext

  Defines a human readable text alternative of aria-rowindex.

  ```ts
  string | undefined
  ```

* aria-rowspan

  Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.

  ```ts
  number | undefined
  ```

* aria-selected

  Indicates the current "selected" state of various widgets.

  ```ts
  Booleanish | undefined
  ```

* aria-setsize

  Defines the number of items in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.

  ```ts
  number | undefined
  ```

* aria-sort

  Indicates if items in a table or grid are sorted in ascending or descending order.

  ```ts
  'none' | 'ascending' | 'descending' | 'other' | undefined
  ```

* aria-valuemax

  Defines the maximum allowed value for a range widget.

  ```ts
  number | undefined
  ```

* aria-valuemin

  Defines the minimum allowed value for a range widget.

  ```ts
  number | undefined
  ```

* aria-valuenow

  Defines the current value for a range widget.

  ```ts
  number | undefined
  ```

* aria-valuetext

  Defines the human readable text alternative of aria-valuenow for a range widget.

  ```ts
  string | undefined
  ```

* async

  ```ts
  boolean | undefined
  ```

* autoCapitalize

  ```ts
  string | undefined
  ```

* autoCorrect

  ```ts
  string | undefined
  ```

* autoFocus

  ```ts
  boolean | undefined
  ```

* autoSave

  ```ts
  string | undefined
  ```

* charSet

  ```ts
  string | undefined
  ```

* children

  ```ts
  ReactNode | undefined
  ```

* className

  ```ts
  string | undefined
  ```

* color

  ```ts
  string | undefined
  ```

* content

  ```ts
  string | undefined
  ```

* contentEditable

  ```ts
  Booleanish | "inherit" | undefined
  ```

* contextMenu

  ```ts
  string | undefined
  ```

* crossOrigin

  ```ts
  CrossOrigin
  ```

* dangerouslySetInnerHTML

  ```ts
  {
              // Should be InnerHTML['innerHTML'].
              // But unfortunately we're mixing renderer-specific type declarations.
              __html: string | TrustedHTML;
          } | undefined
  ```

* datatype

  ```ts
  string | undefined
  ```

* defaultChecked

  ```ts
  boolean | undefined
  ```

* defaultValue

  ```ts
  string | number | ReadonlyArray<string> | undefined
  ```

* defer

  ```ts
  boolean | undefined
  ```

* dir

  ```ts
  string | undefined
  ```

* draggable

  ```ts
  Booleanish | undefined
  ```

* hidden

  ```ts
  boolean | undefined
  ```

* id

  ```ts
  string | undefined
  ```

* inlist

  ```ts
  any
  ```

* inputMode

  Hints at the type of data that might be entered by the user while editing the element or its contents

  ```ts
  'none' | 'text' | 'tel' | 'url' | 'email' | 'numeric' | 'decimal' | 'search' | undefined
  ```

* integrity

  ```ts
  string | undefined
  ```

* is

  Specify that a standard HTML element should behave like a defined custom built-in element

  ```ts
  string | undefined
  ```

* itemID

  ```ts
  string | undefined
  ```

* itemProp

  ```ts
  string | undefined
  ```

* itemRef

  ```ts
  string | undefined
  ```

* itemScope

  ```ts
  boolean | undefined
  ```

* itemType

  ```ts
  string | undefined
  ```

* lang

  ```ts
  string | undefined
  ```

* noModule

  ```ts
  boolean | undefined
  ```

* nonce

  ```ts
  string | undefined
  ```

* onAbort

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onAbortCapture

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onAnimationEnd

  ```ts
  AnimationEventHandler<T> | undefined
  ```

* onAnimationEndCapture

  ```ts
  AnimationEventHandler<T> | undefined
  ```

* onAnimationIteration

  ```ts
  AnimationEventHandler<T> | undefined
  ```

* onAnimationIterationCapture

  ```ts
  AnimationEventHandler<T> | undefined
  ```

* onAnimationStart

  ```ts
  AnimationEventHandler<T> | undefined
  ```

* onAnimationStartCapture

  ```ts
  AnimationEventHandler<T> | undefined
  ```

* onAuxClick

  ```ts
  MouseEventHandler<T> | undefined
  ```

* onAuxClickCapture

  ```ts
  MouseEventHandler<T> | undefined
  ```

* onBeforeInput

  ```ts
  FormEventHandler<T> | undefined
  ```

* onBeforeInputCapture

  ```ts
  FormEventHandler<T> | undefined
  ```

* onBlur

  ```ts
  FocusEventHandler<T> | undefined
  ```

* onBlurCapture

  ```ts
  FocusEventHandler<T> | undefined
  ```

* onCanPlay

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onCanPlayCapture

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onCanPlayThrough

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onCanPlayThroughCapture

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onChange

  ```ts
  FormEventHandler<T> | undefined
  ```

* onChangeCapture

  ```ts
  FormEventHandler<T> | undefined
  ```

* onClick

  ```ts
  MouseEventHandler<T> | undefined
  ```

* onClickCapture

  ```ts
  MouseEventHandler<T> | undefined
  ```

* onCompositionEnd

  ```ts
  CompositionEventHandler<T> | undefined
  ```

* onCompositionEndCapture

  ```ts
  CompositionEventHandler<T> | undefined
  ```

* onCompositionStart

  ```ts
  CompositionEventHandler<T> | undefined
  ```

* onCompositionStartCapture

  ```ts
  CompositionEventHandler<T> | undefined
  ```

* onCompositionUpdate

  ```ts
  CompositionEventHandler<T> | undefined
  ```

* onCompositionUpdateCapture

  ```ts
  CompositionEventHandler<T> | undefined
  ```

* onContextMenu

  ```ts
  MouseEventHandler<T> | undefined
  ```

* onContextMenuCapture

  ```ts
  MouseEventHandler<T> | undefined
  ```

* onCopy

  ```ts
  ClipboardEventHandler<T> | undefined
  ```

* onCopyCapture

  ```ts
  ClipboardEventHandler<T> | undefined
  ```

* onCut

  ```ts
  ClipboardEventHandler<T> | undefined
  ```

* onCutCapture

  ```ts
  ClipboardEventHandler<T> | undefined
  ```

* onDoubleClick

  ```ts
  MouseEventHandler<T> | undefined
  ```

* onDoubleClickCapture

  ```ts
  MouseEventHandler<T> | undefined
  ```

* onDrag

  ```ts
  DragEventHandler<T> | undefined
  ```

* onDragCapture

  ```ts
  DragEventHandler<T> | undefined
  ```

* onDragEnd

  ```ts
  DragEventHandler<T> | undefined
  ```

* onDragEndCapture

  ```ts
  DragEventHandler<T> | undefined
  ```

* onDragEnter

  ```ts
  DragEventHandler<T> | undefined
  ```

* onDragEnterCapture

  ```ts
  DragEventHandler<T> | undefined
  ```

* onDragExit

  ```ts
  DragEventHandler<T> | undefined
  ```

* onDragExitCapture

  ```ts
  DragEventHandler<T> | undefined
  ```

* onDragLeave

  ```ts
  DragEventHandler<T> | undefined
  ```

* onDragLeaveCapture

  ```ts
  DragEventHandler<T> | undefined
  ```

* onDragOver

  ```ts
  DragEventHandler<T> | undefined
  ```

* onDragOverCapture

  ```ts
  DragEventHandler<T> | undefined
  ```

* onDragStart

  ```ts
  DragEventHandler<T> | undefined
  ```

* onDragStartCapture

  ```ts
  DragEventHandler<T> | undefined
  ```

* onDrop

  ```ts
  DragEventHandler<T> | undefined
  ```

* onDropCapture

  ```ts
  DragEventHandler<T> | undefined
  ```

* onDurationChange

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onDurationChangeCapture

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onEmptied

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onEmptiedCapture

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onEncrypted

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onEncryptedCapture

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onEnded

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onEndedCapture

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onError

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onErrorCapture

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onFocus

  ```ts
  FocusEventHandler<T> | undefined
  ```

* onFocusCapture

  ```ts
  FocusEventHandler<T> | undefined
  ```

* onGotPointerCapture

  ```ts
  PointerEventHandler<T> | undefined
  ```

* onGotPointerCaptureCapture

  ```ts
  PointerEventHandler<T> | undefined
  ```

* onInput

  ```ts
  FormEventHandler<T> | undefined
  ```

* onInputCapture

  ```ts
  FormEventHandler<T> | undefined
  ```

* onInvalid

  ```ts
  FormEventHandler<T> | undefined
  ```

* onInvalidCapture

  ```ts
  FormEventHandler<T> | undefined
  ```

* onKeyDown

  ```ts
  KeyboardEventHandler<T> | undefined
  ```

* onKeyDownCapture

  ```ts
  KeyboardEventHandler<T> | undefined
  ```

* onKeyPress

  ```ts
  KeyboardEventHandler<T> | undefined
  ```

* onKeyPressCapture

  ```ts
  KeyboardEventHandler<T> | undefined
  ```

* onKeyUp

  ```ts
  KeyboardEventHandler<T> | undefined
  ```

* onKeyUpCapture

  ```ts
  KeyboardEventHandler<T> | undefined
  ```

* onLoad

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onLoadCapture

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onLoadedData

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onLoadedDataCapture

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onLoadedMetadata

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onLoadedMetadataCapture

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onLoadStart

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onLoadStartCapture

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onLostPointerCapture

  ```ts
  PointerEventHandler<T> | undefined
  ```

* onLostPointerCaptureCapture

  ```ts
  PointerEventHandler<T> | undefined
  ```

* onMouseDown

  ```ts
  MouseEventHandler<T> | undefined
  ```

* onMouseDownCapture

  ```ts
  MouseEventHandler<T> | undefined
  ```

* onMouseEnter

  ```ts
  MouseEventHandler<T> | undefined
  ```

* onMouseLeave

  ```ts
  MouseEventHandler<T> | undefined
  ```

* onMouseMove

  ```ts
  MouseEventHandler<T> | undefined
  ```

* onMouseMoveCapture

  ```ts
  MouseEventHandler<T> | undefined
  ```

* onMouseOut

  ```ts
  MouseEventHandler<T> | undefined
  ```

* onMouseOutCapture

  ```ts
  MouseEventHandler<T> | undefined
  ```

* onMouseOver

  ```ts
  MouseEventHandler<T> | undefined
  ```

* onMouseOverCapture

  ```ts
  MouseEventHandler<T> | undefined
  ```

* onMouseUp

  ```ts
  MouseEventHandler<T> | undefined
  ```

* onMouseUpCapture

  ```ts
  MouseEventHandler<T> | undefined
  ```

* onPaste

  ```ts
  ClipboardEventHandler<T> | undefined
  ```

* onPasteCapture

  ```ts
  ClipboardEventHandler<T> | undefined
  ```

* onPause

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onPauseCapture

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onPlay

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onPlayCapture

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onPlaying

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onPlayingCapture

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onPointerCancel

  ```ts
  PointerEventHandler<T> | undefined
  ```

* onPointerCancelCapture

  ```ts
  PointerEventHandler<T> | undefined
  ```

* onPointerDown

  ```ts
  PointerEventHandler<T> | undefined
  ```

* onPointerDownCapture

  ```ts
  PointerEventHandler<T> | undefined
  ```

* onPointerEnter

  ```ts
  PointerEventHandler<T> | undefined
  ```

* onPointerEnterCapture

  ```ts
  PointerEventHandler<T> | undefined
  ```

* onPointerLeave

  ```ts
  PointerEventHandler<T> | undefined
  ```

* onPointerLeaveCapture

  ```ts
  PointerEventHandler<T> | undefined
  ```

* onPointerMove

  ```ts
  PointerEventHandler<T> | undefined
  ```

* onPointerMoveCapture

  ```ts
  PointerEventHandler<T> | undefined
  ```

* onPointerOut

  ```ts
  PointerEventHandler<T> | undefined
  ```

* onPointerOutCapture

  ```ts
  PointerEventHandler<T> | undefined
  ```

* onPointerOver

  ```ts
  PointerEventHandler<T> | undefined
  ```

* onPointerOverCapture

  ```ts
  PointerEventHandler<T> | undefined
  ```

* onPointerUp

  ```ts
  PointerEventHandler<T> | undefined
  ```

* onPointerUpCapture

  ```ts
  PointerEventHandler<T> | undefined
  ```

* onProgress

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onProgressCapture

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onRateChange

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onRateChangeCapture

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onReset

  ```ts
  FormEventHandler<T> | undefined
  ```

* onResetCapture

  ```ts
  FormEventHandler<T> | undefined
  ```

* onResize

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onResizeCapture

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onScroll

  ```ts
  UIEventHandler<T> | undefined
  ```

* onScrollCapture

  ```ts
  UIEventHandler<T> | undefined
  ```

* onSeeked

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onSeekedCapture

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onSeeking

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onSeekingCapture

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onSelect

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onSelectCapture

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onStalled

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onStalledCapture

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onSubmit

  ```ts
  FormEventHandler<T> | undefined
  ```

* onSubmitCapture

  ```ts
  FormEventHandler<T> | undefined
  ```

* onSuspend

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onSuspendCapture

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onTimeUpdate

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onTimeUpdateCapture

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onTouchCancel

  ```ts
  TouchEventHandler<T> | undefined
  ```

* onTouchCancelCapture

  ```ts
  TouchEventHandler<T> | undefined
  ```

* onTouchEnd

  ```ts
  TouchEventHandler<T> | undefined
  ```

* onTouchEndCapture

  ```ts
  TouchEventHandler<T> | undefined
  ```

* onTouchMove

  ```ts
  TouchEventHandler<T> | undefined
  ```

* onTouchMoveCapture

  ```ts
  TouchEventHandler<T> | undefined
  ```

* onTouchStart

  ```ts
  TouchEventHandler<T> | undefined
  ```

* onTouchStartCapture

  ```ts
  TouchEventHandler<T> | undefined
  ```

* onTransitionEnd

  ```ts
  TransitionEventHandler<T> | undefined
  ```

* onTransitionEndCapture

  ```ts
  TransitionEventHandler<T> | undefined
  ```

* onVolumeChange

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onVolumeChangeCapture

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onWaiting

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onWaitingCapture

  ```ts
  ReactEventHandler<T> | undefined
  ```

* onWheel

  ```ts
  WheelEventHandler<T> | undefined
  ```

* onWheelCapture

  ```ts
  WheelEventHandler<T> | undefined
  ```

* placeholder

  ```ts
  string | undefined
  ```

* prefix

  ```ts
  string | undefined
  ```

* property

  ```ts
  string | undefined
  ```

* radioGroup

  ```ts
  string | undefined
  ```

* referrerPolicy

  ```ts
  HTMLAttributeReferrerPolicy | undefined
  ```

* rel

  ```ts
  string | undefined
  ```

* resource

  ```ts
  string | undefined
  ```

* results

  ```ts
  number | undefined
  ```

* rev

  ```ts
  string | undefined
  ```

* role

  ```ts
  AriaRole | undefined
  ```

* security

  ```ts
  string | undefined
  ```

* slot

  ```ts
  string | undefined
  ```

* spellCheck

  ```ts
  Booleanish | undefined
  ```

* src

  ```ts
  string | undefined
  ```

* style

  ```ts
  CSSProperties | undefined
  ```

* suppressContentEditableWarning

  ```ts
  boolean | undefined
  ```

* suppressHydrationWarning

  ```ts
  boolean | undefined
  ```

* tabIndex

  ```ts
  number | undefined
  ```

* title

  ```ts
  string | undefined
  ```

* translate

  ```ts
  'yes' | 'no' | undefined
  ```

* type

  ```ts
  string | undefined
  ```

* typeof

  ```ts
  string | undefined
  ```

* unselectable

  ```ts
  'on' | 'off' | undefined
  ```

* vocab

  ```ts
  string | undefined
  ```

Examples

### Examples

* #### Example code

  ##### Description

  I am the default example

  ##### JavaScript

  ```jsx
  import {
    Links,
    LiveReload,
    Meta,
    Outlet,
    Scripts,
    ScrollRestoration,
  } from '@remix-run/react';
  import {useNonce, Script} from '@shopify/hydrogen';
  export default function App() {
    const nonce = useNonce();

    return (
      <html lang="en">
        <head>
          <meta charSet="utf-8" />
          <meta name="viewport" content="width=device-width,initial-scale=1" />
          <Meta />
          <Links />
        </head>
        <body>
          <Outlet />
          {/* Note you don't need to pass a nonce to the script component 
          because it's automatically added */}
          <Script src="https://some-custom-script.js" />
          {/* For security, nonce is not supported with `waitForHydration`.
          Instead you need to add the domain of the script directly to your
          Content Securitiy Policy directives. */}
          <Script
            waitForHydration
            src="https://domain.com/script-that-modifies-dom.js"
          />
          <ScrollRestoration nonce={nonce} />
          <Scripts nonce={nonce} />
          <LiveReload nonce={nonce} />
        </body>
      </html>
    );
  }
  ```

  ##### TypeScript

  ```tsx
  import {
    Links,
    LiveReload,
    Meta,
    Outlet,
    Scripts,
    ScrollRestoration,
  } from '@remix-run/react';
  import {useNonce, Script} from '@shopify/hydrogen';
  export default function App() {
    const nonce = useNonce();

    return (
      <html lang="en">
        <head>
          <meta charSet="utf-8" />
          <meta name="viewport" content="width=device-width,initial-scale=1" />
          <Meta />
          <Links />
        </head>
        <body>
          <Outlet />
          {/* Note you don't need to pass a nonce to the script component 
          because it's automatically added */}
          <Script src="https://some-custom-script.js" />
          {/* For security, nonce is not supported with `waitForHydration`.
          Instead you need to add the domain of the script directly to your
          Content Securitiy Policy directives. */}
          <Script
            waitForHydration
            src="https://domain.com/script-that-modifies-dom.js"
          />
          <ScrollRestoration nonce={nonce} />
          <Scripts nonce={nonce} />
          <LiveReload nonce={nonce} />
        </body>
      </html>
    );
  }
  ```

## Related

[- createContentSecurityPolicy](https://shopify.dev/docs/api/hydrogen/2024-07/utilities/createcontentsecuritypolicy)

[- useNonce](https://shopify.dev/docs/api/hydrogen/2024-07/hooks/usenonce)
