/** * Copyright (c) 2025 xwra * SPDX-License-Identifier: AGPL-3.0-or-later */ interface TintedImageProps { src: string; colour: string; [key: string]: any; } export default function TintedImage({ colour, src, ...props }: TintedImageProps) { return ( ); }