UNPKG

253 BJavaScriptView Raw
1import PropTypes from 'prop-types';
2
3import {
4 HORIZONTAL_ORIENTATION,
5 VERTICAL_ORIENTATION,
6 VERTICAL_SCROLLABLE,
7} from '../constants';
8
9export default PropTypes.oneOf([
10 HORIZONTAL_ORIENTATION,
11 VERTICAL_ORIENTATION,
12 VERTICAL_SCROLLABLE,
13]);