# ObjectSpreadProperty

* jsx

  ```tsx
  import { ObjectSpreadProperty } from "@alloy-js/typescript";


  <ObjectSpreadProperty jsValue={unknown} value={Children}>
    {children}
  </ObjectSpreadProperty>
  ```

* stc

  ```ts
  import { ObjectSpreadProperty } from "@alloy-js/typescript/stc";


  ObjectSpreadProperty({ jsValue: unknown, value: Children }).children(children)
  ```

## Props

|          |                                                   |   |
| -------- | ------------------------------------------------- | - |
| children | optional[Children](../../../core/types/children/) |   |
| jsValue  | optional unknown                                  |   |
| value    | optional[Children](../../../core/types/children/) |   |
