Sha256: 541a417257cf780ca514ef2b7d3e4ed6d72b75d86f3827e47b34a460107325e6

Contents?: true

Size: 644 Bytes

Versions: 2

Compression:

Stored size: 644 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Icons
    module Lucide
      class LaptopMinimalCheck < 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: 'M2 20h20')
            s.path(d: 'm9 10 2 2 4-4')
            s.rect(x: '3', y: '4', width: '18', height: '12', rx: '2')
          end
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
phlex-icons-1.6.0 lib/phlex/icons/lucide/laptop_minimal_check.rb
phlex-icons-lucide-1.6.0 lib/phlex/icons/lucide/laptop_minimal_check.rb