style /user/projects page
Build and Release / release (push) Failing after 27s

This commit is contained in:
2026-05-14 16:56:15 +07:00
parent b54fdb987e
commit 7d774440a9
2 changed files with 105 additions and 105 deletions
+3
View File
@@ -5,6 +5,7 @@ type ButtonProps = React.ButtonHTMLAttributes<HTMLButtonElement> & {
variant?: "primary" | "outline"; // Button variant
startIcon?: ReactNode; // Icon before the text
endIcon?: ReactNode; // Icon after the text
title?: string; // Title text
};
const Button: React.FC<ButtonProps> = ({
@@ -16,6 +17,7 @@ const Button: React.FC<ButtonProps> = ({
className = "",
disabled = false,
type = "button",
title,
...rest
}) => {
// Size Classes
@@ -39,6 +41,7 @@ const Button: React.FC<ButtonProps> = ({
} ${variantClasses[variant]} ${
disabled ? "cursor-not-allowed opacity-50" : ""
}`}
title={title}
disabled={disabled}
type={type}
{...rest}