@versionone/ui
Version:
Open-source and community supported collection of common UI components built with React. As an open-sourced and community supported project, VersionOne UI is not formally supported by VersionOne.
15 lines (11 loc) • 373 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
var _react = require('react');
var horizontal = _react.PropTypes.oneOf(['left', 'center', 'right']);
var vertical = _react.PropTypes.oneOf(['top', 'middle', 'bottom']);
exports.default = _react.PropTypes.shape({
horizontal: horizontal.isRequired,
vertical: vertical.isRequired
});