Destructure and Rename Variable

const content = {
type,
value,
onChange,
reset
}
const { reset:authorReset, ...otherAuthorProps } = author
//...
<input {...otherAuthorProps} />

Then use [Spread Attributes] for rest of the props from author.

Source -> Destructuring And Renaming Variable