Sha256: 217c98b77e0b92fb5d43cff5dc12e42e21514de1874204f18ca6e14ac3a9de29

Contents?: true

Size: 680 Bytes

Versions: 4

Compression:

Stored size: 680 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Icons
    module Lucide
      class Scale3d < Base
        def view_template
          svg(
            **attrs,
            xmlns: 'http://www.w3.org/2000/svg',
            viewbox: '0 0 24 24',
            fill: 'none',
            stroke: 'currentColor',
            stroke_width: '2',
            stroke_linecap: 'round',
            stroke_linejoin: 'round'
          ) do |s|
            s.path(d: 'M5 7v11a1 1 0 0 0 1 1h11')
            s.path(d: 'M5.293 18.707 11 13')
            s.circle(cx: '19', cy: '19', r: '2')
            s.circle(cx: '5', cy: '5', r: '2')
          end
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
phlex-icons-lucide-1.8.0 lib/phlex/icons/lucide/scale_3d.rb
phlex-icons-1.8.0 lib/phlex/icons/lucide/scale_3d.rb
phlex-icons-1.7.0 lib/phlex/icons/lucide/scale_3d.rb
phlex-icons-lucide-1.7.0 lib/phlex/icons/lucide/scale_3d.rb