UNPKG

821 BTypeScriptView Raw
1import withGuide from './withGuide';
2import TextGuideView from './views/Text';
3import PointGuideView from './views/Point';
4import LineGuideView from './views/Line';
5import ArcGuideView from './views/Arc';
6import RectGuideView from './views/Rect';
7import ImageGuideView from './views/Image';
8import TagGuideView from './views/Tag';
9
10const DefaultGuideView = () => null;
11const TextGuide = withGuide(TextGuideView);
12const PointGuide = withGuide(PointGuideView);
13const LineGuide = withGuide(LineGuideView);
14const ArcGuide = withGuide(ArcGuideView);
15const RectGuide = withGuide(RectGuideView);
16const ImageGuide = withGuide(ImageGuideView);
17const TagGuide = withGuide(TagGuideView)
18
19export default withGuide(DefaultGuideView);
20
21export { withGuide, TextGuide, PointGuide, ArcGuide, LineGuide, RectGuide, ImageGuide, TagGuide };