# frozen_string_literal: true module Phlex module Lucide class NotebookTabsIcon < Phlex::Lucide::Icon def view_template svg( xmlns: "http://www.w3.org/2000/svg", width: size, height: size, viewbox: "0 0 24 24", fill: "none", stroke: "currentColor", stroke_width: "2", stroke_linecap: "round", stroke_linejoin: "round", **props ) do |s| s.path(d: "M2 6h4") s.path(d: "M2 10h4") s.path(d: "M2 14h4") s.path(d: "M2 18h4") s.rect(width: "16", height: "20", x: "4", y: "2", rx: "2") s.path(d: "M15 2v20") s.path(d: "M15 7h5") s.path(d: "M15 12h5") s.path(d: "M15 17h5") end end end end end