Files
dpage-editor/src/pages/editor/components/tools/index.ts
T
hamid zarghami 3bfd5fd1eb base admin
2026-06-03 12:24:32 +03:30

13 lines
671 B
TypeScript

export { default as RectangleShape } from "./RectangleShape";
export { default as CircleShape } from "./CircleShape";
export { default as TriangleShape } from "./TriangleShape";
export { default as AbstractShape } from "./AbstractShape";
export { default as TextShape } from "./TextShape";
export { default as LineShape } from "./LineShape";
export { default as ArrowShape } from "./ArrowShape";
export { default as ImageObject } from "./ImageObject";
export { default as LinkShape } from "./LinkShape";
export { default as VideoShape } from "./VideoShape";
export { default as AudioShape } from "./AudioShape";
export type { ShapeProps, TextShapeProps } from "./types";