/* DokuWiki MoaiEditor Icons.js file Version : 0.5 (May 5, 2026) Author : MoaiTools License : GPL 3 (http://www.gnu.org/licenses/gpl.html) */ /* Various SVG icons used mainly by the buttons. */ MoaiEditor.Icons = class { constructor() { this.preview = ''; this.ico_settings = ` `; this.ico_layout_row = ` `; this.ico_layout_col = ` `; this.ico_layout_single = ` `; this.ico_divider_left = ` `; this.ico_divider_right = ` `; this.ico_divider_up = ` `; this.ico_divider_down = ` `; this.ico_livepreview = ` `; this.ico_autoscroll1 = ` `; this.ico_autoscroll2 = ` `; this.ico_rabbit = ` `; this.ico_linewrap = ` `.trim(); this.ico_fullscreen = ` `.trim(); this.ico_scrolltop = ` `.trim(); this.ico_scrollbottom = ` `.trim(); this.ico_arrowleft = ` `.trim(); this.ico_arrowright = ` `.trim(); this.ico_arrowhrz = ` `.trim(); this.ico_arrow_corner_leftdown = ` `.trim(); this.ico_summary = ` `.trim(); this.ico_rsppanel = ` `.trim(); this.ico_power = ` `.trim(); this.ico_options = ` `; this.ico_editor = ` `; this.ico_bot = ` `; this.ico_fullwidth = ` `; this.logo_moai = ` `; } }; // End Class