Sha256: b08bb51a7d113d82194ced8a4052d9a40cfb01cfc01cc16758447e93a2c83a9e

Contents?: true

Size: 858 Bytes

Versions: 3

Compression:

Stored size: 858 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Lucide
    class CombineIcon < 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.rect(width: "8", height: "8", x: "2", y: "2", rx: "2")
          s.path(d: "M14 2c1.1 0 2 .9 2 2v4c0 1.1-.9 2-2 2")
          s.path(d: "M20 2c1.1 0 2 .9 2 2v4c0 1.1-.9 2-2 2")
          s.path(d: "M10 18H5c-1.7 0-3-1.3-3-3v-1")
          s.polyline(points: "7 21 10 18 7 15")
          s.rect(width: "8", height: "8", x: "14", y: "14", rx: "2")
        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/combine_icon.rb
phlex-lucide-0.427.1 lib/phlex/lucide/icons/combine_icon.rb
phlex-lucide-0.427.0 lib/phlex/lucide/icons/combine_icon.rb