react-native/ReactCommon/fabric/graphics/graphicValuesConversions.h
Valentin Shergin 608d1fb590 fabric/graphics module: all about graphics
Summary: `fabric/graphics` provides graphics primitives; the implementation should be platform-specific eventually.

Reviewed By: fkgozali

Differential Revision: D7230675

fbshipit-source-id: ff05d2673072fad5ee6f331f0155561969e1a8b6
2018-03-18 19:17:39 -07:00

21 lines
450 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 <folly/dynamic.h>
#include <fabric/graphics/Color.h>
namespace facebook {
namespace react {
SharedColor colorFromDynamic(folly::dynamic value);
std::string colorNameFromColor(SharedColor value);
} // namespace react
} // namespace facebook