import clsx from 'clsx'; import { MouseEventHandler, ReactNode } from 'react'; export default function Button(props: { className?: string; href?: string; imgUrl?: string; onClick?: MouseEventHandler; title?: string; children: ReactNode; selected?: boolean; disabled?: boolean; }) { return (
{props.imgUrl && } {props.children}
); }