type HeaderButtonProps = { Icon: ( props: React.SVGProps & { title?: string | undefined; titleId?: string | undefined; } ) => JSX.Element; label: string; disabled?: boolean; onClick: () => void; className?: string; position?: "normal" | "reverse"; }; const HeaderButton = ({ Icon, label, disabled = false, onClick, className = "", position = "normal", }: HeaderButtonProps) => { return ( <> ); }; export default HeaderButton;