Files
tpanel/widget/common/picture.tsx
2025-05-31 14:00:56 +05:30

12 lines
277 B
TypeScript

import { ConstructProps } from "astal/gtk4";
import { astalify, Gtk } from "astal/gtk4";
export type PictureProps = ConstructProps<
Gtk.Picture,
Gtk.Picture.ConstructorProps
>;
export const Picture = astalify<Gtk.Picture, Gtk.Picture.ConstructorProps>(
Gtk.Picture,
);