import { ReactNode } from "react"; interface VierkantProps { href?: string; width?: string; height?: string; children?: ReactNode; } export function Vierkant(props: VierkantProps) { return {props.children} }