Sha256: 667169179291eb05c390543561b57230c9aef3fc8d5a7f2961d1599f290f6a4d

Contents?: true

Size: 731 Bytes

Versions: 3

Compression:

Stored size: 731 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Lucide
    class MonitorSmartphoneIcon < 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: "M18 8V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h8")
          s.path(d: "M10 19v-3.96 3.15")
          s.path(d: "M7 19h5")
          s.rect(width: "6", height: "10", x: "16", y: "12", 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/monitor_smartphone_icon.rb
phlex-lucide-0.427.1 lib/phlex/lucide/icons/monitor_smartphone_icon.rb
phlex-lucide-0.427.0 lib/phlex/lucide/icons/monitor_smartphone_icon.rb