2015-01-29 17:10:49 -08:00
|
|
|
/**
|
2015-03-23 15:07:33 -07:00
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
*
|
2018-02-16 18:24:55 -08:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2015-01-29 17:10:49 -08:00
|
|
|
*
|
2018-05-10 19:06:46 -07:00
|
|
|
* @format
|
2018-06-20 00:35:29 -07:00
|
|
|
* @flow strict
|
2015-01-29 17:10:49 -08:00
|
|
|
*/
|
2018-05-10 19:06:46 -07:00
|
|
|
|
2015-05-19 13:43:46 -07:00
|
|
|
'use strict';
|
2015-01-29 17:10:49 -08:00
|
|
|
|
2017-07-12 04:12:02 -07:00
|
|
|
const PropTypes = require('prop-types');
|
2015-01-29 17:10:49 -08:00
|
|
|
|
2018-05-12 10:25:05 -07:00
|
|
|
const EdgeInsetsPropType = PropTypes.shape({
|
2015-01-29 17:10:49 -08:00
|
|
|
top: PropTypes.number,
|
|
|
|
left: PropTypes.number,
|
|
|
|
bottom: PropTypes.number,
|
|
|
|
right: PropTypes.number,
|
2018-05-12 10:25:05 -07:00
|
|
|
});
|
2015-01-29 17:10:49 -08:00
|
|
|
|
2018-05-12 10:25:18 -07:00
|
|
|
export type EdgeInsetsProp = $ReadOnly<{|
|
|
|
|
top?: ?number,
|
|
|
|
left?: ?number,
|
|
|
|
bottom?: ?number,
|
|
|
|
right?: ?number,
|
|
|
|
|}>;
|
2017-05-23 07:55:52 -07:00
|
|
|
|
2015-01-29 17:10:49 -08:00
|
|
|
module.exports = EdgeInsetsPropType;
|