--- interface Props { class?: string; name?: string; placeholder?: string; readonly?: boolean; rows?: number; value?: string; } const { class: className = '', name, placeholder, readonly = false, rows = 5, value, } = Astro.props; ---