{"version":3,"file":"Button-CokUatqg.js","sources":["../../Client/components/Button.tsx"],"sourcesContent":["import { ComponentPropsWithoutRef } from 'react';\n\ninterface ButtonProps extends ComponentPropsWithoutRef<'button'> {\n variant?: 'primary' | 'secondary' | 'danger' | 'ghost';\n outline?: boolean;\n disabled?: boolean;\n small?: boolean;\n children: React.ReactNode;\n type?: ComponentPropsWithoutRef<'button'>['type']; // Extract type dynamically\n fullWidth?: boolean;\n}\n\n/**\n * Button component with styling for different variants.\n *\n * @param variant - Primary, secondary, danger or ghost styling.\n * @param outline - Whether to use outline styling.\n * @param disabled - Whether button is disabled.\n * @param small - Whether to use small styling.\n * @param type - Type of the button (submit - button - reset)\n * @param children - Button contents.\n * @param rest - Other props passed to button.\n * @param fullWidth - Whether to use 100% of width\n */\nexport function Button({\n variant = 'primary',\n outline = false,\n disabled = false,\n small = false,\n type = 'button', // Default to \"button\" to prevent unintended form submissions\n fullWidth = false,\n children,\n ...rest\n}: ButtonProps) {\n const baseClasses = 'btn self-start';\n const variantClasses = {\n primary: !outline ? 'btn-primary' : 'btn-primary-stroke',\n secondary: !outline ? 'btn-secondary' : 'btn-secondary-stroke',\n danger: 'btn-danger',\n ghost: 'btn-ghost',\n };\n\n const smallClasses = small ? 'btn-sm' : '';\n const fullWidthClass = fullWidth ? 'w-full' : '';\n\n const btnClasses = `${baseClasses} ${variantClasses[variant]} ${smallClasses} ${fullWidthClass} ${rest.className ?? ''}`;\n\n return (\n \n {children}\n \n );\n}\n"],"names":["Button","variant","outline","disabled","small","type","fullWidth","children","rest","baseClasses","variantClasses","smallClasses","fullWidthClass","btnClasses","jsx"],"mappings":"yCAwBO,SAASA,EAAO,CACnB,QAAAC,EAAU,UACV,QAAAC,EAAU,GACV,SAAAC,EAAW,GACX,MAAAC,EAAQ,GACR,KAAAC,EAAO,SACP,UAAAC,EAAY,GACZ,SAAAC,EACA,GAAGC,CACP,EAAgB,CACZ,MAAMC,EAAc,iBACdC,EAAiB,CACnB,QAAUR,EAA0B,qBAAhB,cACpB,UAAYA,EAA4B,uBAAlB,gBACtB,OAAQ,aACR,MAAO,WACX,EAEMS,EAAeP,EAAQ,SAAW,GAClCQ,EAAiBN,EAAY,SAAW,GAExCO,EAAa,GAAGJ,CAAW,IAAIC,EAAeT,CAAO,CAAC,IAAIU,CAAY,IAAIC,CAAc,IAAIJ,EAAK,WAAa,EAAE,GAGlH,OAAAM,EAAA,IAAC,SAAA,CACI,GAAGN,EACJ,KAAAH,EACA,UAAWQ,EACX,SAAAV,EAEC,SAAAI,CAAA,CACL,CAER"}