{\n onChange({ target: { value, name: fieldName, checked: checked } });\n }}\n >\n
\n
\n
{label}
\n {secondaryLabel && (\n
{secondaryLabel}
\n )}\n
\n
\n );\n};\n\nRadioCard.displayName = 'RadioCard';\n","import classNames from 'classnames';\nimport { FieldError } from 'react-hook-form';\nimport { isEmpty, get } from 'lodash-es';\nimport * as React from 'react';\n\nimport { autoCompletes, ids, placeholders } from './constants';\n\ninterface TextareaOwnProps {\n fieldName: string;\n autoFocus?: boolean;\n onBlur?: (e: any) => void;\n onChange?: (e: any) => void;\n error?: FieldError;\n value?: string;\n}\n\ntype TextareaProps = TextareaOwnProps;\n\nexport const Textarea: React.FC