import { Button } from 'primereact/button'; import useWindowWidth from '@/hooks/useWindowWidth'; const GenericButton = ({ label, icon, onClick, severity, size, className, outlined = false, rounded = false, disabled = false, tooltip = null, tooltipOptions = null, iconPos = "left" }) => { const windowWidth = useWindowWidth(); return (