30 lines
430 B
C
30 lines
430 B
C
|
/**
|
||
|
* Copyright (c) 2015-present, Facebook, Inc.
|
||
|
*
|
||
|
* This source code is licensed under the MIT license found in the
|
||
|
* LICENSE file in the root directory of this source tree.
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <cmath>
|
||
|
|
||
|
namespace facebook {
|
||
|
namespace react {
|
||
|
|
||
|
enum class PointerEventsMode {
|
||
|
Auto,
|
||
|
None,
|
||
|
BoxNone,
|
||
|
BoxOnly
|
||
|
};
|
||
|
|
||
|
enum class BorderStyle {
|
||
|
Solid,
|
||
|
Dotted,
|
||
|
Dashed
|
||
|
};
|
||
|
|
||
|
} // namespace react
|
||
|
} // namespace facebook
|