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