import { TextAreaInput } from '#components/Input' import type { Item } from '#types/Item' /** * @category Map */ export const PopupTextAreaInput = ({ dataField, placeholder, style, item, }: { dataField: string placeholder: string style?: string item?: Item }) => { return ( ) }