Skip to content

Image

Image is a custom component that wraps a QLabel and QPixmap to display an image in your application.

Example

example_Image.tsx
import { Image } from '@vixen-js/core-react';
export function ImageExample() {
return (
<Image
src="./assets/images/hello-world.png"
/>
);
}