UNPKG

291 BJavaScriptView Raw
1import PropTypes from 'prop-types';
2
3import {
4 INFO_POSITION_TOP,
5 INFO_POSITION_BOTTOM,
6 INFO_POSITION_BEFORE,
7 INFO_POSITION_AFTER,
8} from '../constants';
9
10export default PropTypes.oneOf([
11 INFO_POSITION_TOP,
12 INFO_POSITION_BOTTOM,
13 INFO_POSITION_BEFORE,
14 INFO_POSITION_AFTER,
15]);