import { ReactNode, useEffect, useState } from 'react'; import CheckBoxIcon from '@material-ui/icons/CheckBox'; import CheckBoxOutlineBlankIcon from '@material-ui/icons/CheckBoxOutlineBlank'; import EditOutlinedIcon from '@material-ui/icons/EditOutlined'; import SearchIcon from '@material-ui/icons/Search'; export function Vierkant(props: { href?: string; width?: string; height?: string; children?: ReactNode; className?: string; id?: string; onclick?: () => void; }) { return {props.children} ; } export function Button(props: { text?: string; children?: ReactNode; href?: string; className?: string; onclick?: () => void; id?: string; }) { return {props.text ? {props.text} : undefined} {props.children} ; } export function IconLabelButton(props: { text: string; icon: ReactNode; onclick?: () => void; href?: string; className?: string; }) { return ; } export function Input(props: { label?: string; type?: string; id?: string; min?: number; max?: number; value?: string | number; dark?: boolean; autocomplete?: string; autofocus?: boolean; className?: string; }) { return ; } export function SearchBar(props: { label?: string; }) { return