footer desktop

This commit is contained in:
2025-05-13 11:43:16 +03:00
parent a5ffa7ae13
commit 837c0f1fb6
8 changed files with 339 additions and 21 deletions

View File

@@ -0,0 +1,17 @@
export interface TextInputProps {
value: string
handleChange?: (e: React.ChangeEvent<HTMLInputElement>) => void
label?: string
placeholder?: string
name: string
type?: 'text' | 'email' | 'password'
className?: string
maxLength?: number
}
export interface ButtonProps {
onClick?: () => void
className?: string
text?: string
type?: 'button'
}