type HeaderButtonProps = { Icon: ( props: React.SVGProps & { title?: string | undefined; titleId?: string | undefined; } ) => JSX.Element; label: string; action: () => void; }; const HeaderButton = ({ Icon, label, action }: HeaderButtonProps) => { return ( <> ); }; export default HeaderButton;