This is the JSX code for the InputForm and I’m wondering if there is a prop to limit the accepted files that cand be uploaded. In this cases I’m looking to limit to PDF and Wod docs for resume submissions. Or is there some other way of doing this using the Builder.io input form component?
import { FormInput } from “@components”;
export default function MyComponent(props) {
return (
<FormInput
$name=“Input”
name=“Resume”
placeholder=“Upload Resume PDF”
type=“file”
class=“p-3 mt-2.5 rounded-t-md rounded-br-md rounded-bl-md border-t border-r border-b border-l bg-white bg-opacity-10”
required={true}
/>
);
}