const BOX_JUSTIFY_CONTENT = [ { label: "Start", value: "flex-start" }, { label: "End", value: "flex-end" }, { label: "Center", value: "center" }, { label: "Space Around", value: "space-around" }, { label: "Space Between", value: "space-between" }, { label: "Space Evenly", value: "space-evenly" } ]; const BORDER_STYLES = [ { label: "Dashed", value: "dashed" }, { label: "Solid", value: "solid" }, { label: "Dotted", value: "dotted" }, { label: "Double", value: "double" }, { label: "Groove", value: "groove" }, { label: "Inset", value: "inset" }, { label: "Outset", value: "outset" }, { label: "Ridge", value: "ridge" } ]; const DIGIT_FONT_WEIGHT = [ { label: "100", value: 100 }, { label: "200", value: 200 }, { label: "300", value: 300 }, { label: "400", value: 400 }, { label: "500", value: 500 }, { label: "600", value: 600 }, { label: "700", value: 700 }, { label: "800", value: 800 }, { label: "900", value: 900 } ]; const LABEL_TRANSFORM = [ { label: "Capitalize", value: "capitalize" }, { label: "Uppercase", value: "uppercase" }, { label: "Lowecase", value: "lowercase" }, { label: "None", value: "none" }, { label: "Full Width", value: "full-width" } ]; const FONT_DECORATION = [ { label: "Initial", value: "initial" }, { label: "Overline", value: "overline" }, { label: "Line Through", value: "line-through" }, { label: "Underline", value: "underline" }, { label: "Underline Overline", value: "undedashedrline overline" } ]; const TEXT_ALIGN = [ { label: "Left", value: "left" }, { label: "Right", value: "right" }, { label: "Center", value: "center" }, { label: "Justify", value: "justify" } ]; const FONT_STYLES = [ { label: "Normal", value: "normal" }, { label: "Italic", value: "italic" }, { label: "Oblique", value: "oblique" } ]; export { BOX_JUSTIFY_CONTENT, BORDER_STYLES, DIGIT_FONT_WEIGHT, LABEL_TRANSFORM, FONT_STYLES, FONT_DECORATION, TEXT_ALIGN };