import withGuide, { GuideProps } from './withGuide'; import TextGuideView from './views/Text'; import PointGuideView from './views/Point'; import LineGuideView from './views/Line'; import ArcGuideView from './views/Arc'; import RectGuideView from './views/Rect'; import ImageGuideView from './views/Image'; import TagGuideView from './views/Tag'; import LottieGuideView from './views/Lottie'; import PolylineGuideView from './views/Polyline'; const DefaultGuideView = () => null; const TextGuide = withGuide(TextGuideView); const PointGuide = withGuide(PointGuideView); const LineGuide = withGuide(LineGuideView); const ArcGuide = withGuide(ArcGuideView); const RectGuide = withGuide(RectGuideView); const ImageGuide = withGuide(ImageGuideView); const TagGuide = withGuide(TagGuideView); const LottieGuide = withGuide(LottieGuideView); const PolylineGuide = withGuide(PolylineGuideView); export { GuideProps }; export default withGuide(DefaultGuideView); export { withGuide, TextGuide, PointGuide, ArcGuide, LineGuide, RectGuide, ImageGuide, TagGuide, LottieGuide, PolylineGuide, };