Sha256: f71b6002f3f0c51a2a7e377916e0eaeef172b7fafdcb4f4acb3aee63dc81fe61
Contents?: true
Size: 755 Bytes
Versions: 3
Compression:
Stored size: 755 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class ChartBarStackedIcon < 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: "M11 13v4") s.path(d: "M15 5v4") s.path(d: "M3 3v16a2 2 0 0 0 2 2h16") s.rect(x: "7", y: "13", width: "9", height: "4", rx: "1") s.rect(x: "7", y: "5", width: "12", height: "4", rx: "1") end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems