Sha256: 53c490acc71d937a3d09406faa314045ecb9a0335a4c7290f36e3d4de2d09311

Contents?: true

Size: 688 Bytes

Versions: 3

Compression:

Stored size: 688 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Lucide
    class ChartNoAxesColumnIncreasingIcon < 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.line(x1: "12", x2: "12", y1: "20", y2: "10")
          s.line(x1: "18", x2: "18", y1: "20", y2: "4")
          s.line(x1: "6", x2: "6", y1: "20", y2: "16")
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
phlex-lucide-0.428.0 lib/phlex/lucide/icons/chart_no_axes_column_increasing_icon.rb
phlex-lucide-0.427.1 lib/phlex/lucide/icons/chart_no_axes_column_increasing_icon.rb
phlex-lucide-0.427.0 lib/phlex/lucide/icons/chart_no_axes_column_increasing_icon.rb