import { CSSProperties, ReactNode } from "react"; import SearchIcon from '@material-ui/icons/Search'; interface VierkantProps { href?: string; width?: string; height?: string; style?: CSSProperties; children?: ReactNode; className?: string; } export function Vierkant(props: VierkantProps) { return {props.children} } interface ButtonProps { text?: string; children?: ReactNode; style?: CSSProperties; onclick?: (() => void); } export function Button(props: ButtonProps) { return
{ props.text ? {props.text} : undefined } { props.children }
; } interface SearchBarProps { label?: string; } export function SearchBar(props: SearchBarProps) { return
}