/** @jsx h */ import type { ComponentChildren } from 'preact'; import { h } from 'preact'; type Props = { className: string; onClick(event: MouseEvent): void; children: ComponentChildren; disabled?: boolean; }; const GeoSearchButton = ({ className, disabled = false, onClick, children, }: Props) => ( ); export default GeoSearchButton;