UNPKG

@shopify/polaris

Version:

Shopify’s admin product component library

14 lines (11 loc) 316 B
import { createContext } from 'react'; import { defaultAllowMultiple } from './utils/index.js'; const DropZoneContext = /*#__PURE__*/createContext({ disabled: false, focused: false, size: 'extraLarge', type: 'file', measuring: false, allowMultiple: defaultAllowMultiple }); export { DropZoneContext };