<image>
<image>
creates an image component. Alternatively, <rawimage>
creates a raw image component and <svgimage>
creates a svg image component (requires Unity.VectorGraphics
package).
export default function App() { const imageAddress = 'https://picsum.photos/200'; return <image style={{ height: 300, objectFit: 'contain' }} source={imageAddress} />; };