import { FileInputBlock } from './schema'
export const defaultFileInputOptions = {
isRequired: true,
isMultipleAllowed: false,
labels: {
placeholder: `
Click to upload
or drag and drop
(size limit: 10MB)`,
button: 'Upload',
clear: 'Clear',
skip: 'Skip',
},
} as const satisfies FileInputBlock['options']