You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
652 B
18 lines
652 B
#pragma once
|
|
|
|
#include "PathViewManager.g.h"
|
|
#include "RenderableViewManager.h"
|
|
|
|
namespace winrt::RNSVG::implementation {
|
|
struct PathViewManager : PathViewManagerT<PathViewManager, RNSVG::implementation::RenderableViewManager> {
|
|
PathViewManager();
|
|
|
|
// IViewManagerWithNativeProperties
|
|
Windows::Foundation::Collections::IMapView<hstring, Microsoft::ReactNative::ViewManagerPropertyType> NativeProps();
|
|
};
|
|
} // namespace winrt::RNSVG::implementation
|
|
|
|
namespace winrt::RNSVG::factory_implementation {
|
|
struct PathViewManager : PathViewManagerT<PathViewManager, implementation::PathViewManager> {};
|
|
} // namespace winrt::RNSVG::factory_implementation
|