export const TOP = "top"; export const BOTTOM = "bottom"; export const LEFT = "left"; export const RIGHT = "right"; export type DIRECTION = "top" | "bottom" | "left" | "right"; export type STROKE_LINEJOIN = "bevel" | "round" | "miter" | "miter-clip" | "arcs"; export const CLASS_NAME = "__shape-svg";