create ui components

This commit is contained in:
2025-05-13 17:49:51 +03:00
parent 837c0f1fb6
commit e766284333
13 changed files with 202 additions and 44 deletions

View File

@@ -5,7 +5,7 @@ const Button = ({ onClick, className, text, type }: ButtonProps) => {
return (
<button
onClick={onClick}
className={`${className} text-base font-medium px-4 py-3 text-white bg-orange rounded-2xl cursor-pointer`}
className={`text-base font-medium rounded-2xl cursor-pointer ${className}`}
type={type}
>
<span>{text}</span>