Files
react-native-svg/windows/RNSVG/ClipPathViewManager.h
Marlene Cota 38da5fb67c feat(windows): add clipPath and touch events (#1933)
Adding support for clipPath and touch events.
2023-01-04 15:51:08 +01:00

17 lines
677 B
C++

#pragma once
#include "ClipPathViewManager.g.h"
#include "GroupViewManager.h"
namespace winrt::RNSVG::implementation {
struct ClipPathViewManager : ClipPathViewManagerT<ClipPathViewManager, RNSVG::implementation::GroupViewManager> {
ClipPathViewManager();
// IViewManagerWithNativeProperties
Windows::Foundation::Collections::IMapView<hstring, Microsoft::ReactNative::ViewManagerPropertyType> NativeProps();
};
} // namespace winrt::RNSVG::implementation
namespace winrt::RNSVG::factory_implementation {
struct ClipPathViewManager : ClipPathViewManagerT<ClipPathViewManager, implementation::ClipPathViewManager> {};
} // namespace winrt::RNSVG::factory_implementation