{"version":3,"file":"InputFile.cjs","sources":["../../../src/components/InputFile/InputFile.tsx"],"sourcesContent":["'use client'\n\nimport { forwardRef } from 'react'\n\nimport { InputFileMultiplyAppendable } from './InputFileMultiplyAppendable'\nimport { InputFileNative } from './InputFileNative'\n\nimport type { Props } from './types'\n\nexport const InputFile = forwardRef<HTMLInputElement, Props>(({ multiple, ...rest }, ref) => {\n  if (typeof multiple === 'object' && multiple.appendable) {\n    return <InputFileMultiplyAppendable {...rest} ref={ref} />\n  }\n\n  return <InputFileNative {...rest} multiple={multiple as boolean | undefined} ref={ref} />\n})\n"],"names":[],"mappings":";;;;;;;;AASO;;;;AAKL;AACF;;"}