- Introduced ModalDestinationButton for destination selection with customizable icons and labels. - Added ModalInput for text input with optional character counter. - Implemented ModalLink for reusable links styled as underlined text. - Created ModalPlatformCard for platform selection with badges. - Developed ModalRadioGroup for radio button groups with custom styling. - Added ModalSection for grouping modal content with optional labels. - Implemented ModalSelect for dropdown selections with custom styling. - Created ModalShareButtons for sharing options via Gmail, Email, and Messenger. - Developed ModalTextarea for multi-line text input with character counter. - Introduced ModalToggle for toggle switches with optional help text and links. - Updated README.md with component descriptions, usage examples, and design guidelines. - Added index.ts for centralized exports of modal components.
47 lines
981 B
TypeScript
47 lines
981 B
TypeScript
import React from 'react'
|
|
import styles from './ModalInput.module.css'
|
|
|
|
interface Props {
|
|
label: string
|
|
value: string
|
|
onChange: (value: string) => void
|
|
placeholder?: string
|
|
maxLength?: number
|
|
showCounter?: boolean
|
|
required?: boolean
|
|
className?: string
|
|
}
|
|
|
|
const ModalInput: React.FC<Props> = ({
|
|
label,
|
|
value,
|
|
onChange,
|
|
placeholder,
|
|
maxLength,
|
|
showCounter = false,
|
|
required = false,
|
|
className = ''
|
|
}) => {
|
|
return (
|
|
<div className={`${styles.container} ${className}`}>
|
|
<label className={styles.label}>{label}</label>
|
|
<input
|
|
type="text"
|
|
value={value}
|
|
onChange={(e) => onChange(e.target.value)}
|
|
placeholder={placeholder}
|
|
maxLength={maxLength}
|
|
required={required}
|
|
className={styles.input}
|
|
/>
|
|
{showCounter && maxLength && (
|
|
<div className={styles.counter}>
|
|
{value.length}/{maxLength}
|
|
</div>
|
|
)}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default ModalInput
|