Sha256: 108335d1c89fe50642d872108574e1c18d6247edd40b319bd638c8dd4e44d13a

Contents?: true

Size: 736 Bytes

Versions: 3

Compression:

Stored size: 736 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Lucide
    class CameraOffIcon < 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: "2", x2: "22", y1: "2", y2: "22")
          s.path(d: "M7 7H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h16")
          s.path(d: "M9.5 4h5L17 7h3a2 2 0 0 1 2 2v7.5")
          s.path(d: "M14.121 15.121A3 3 0 1 1 9.88 10.88")
        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/camera_off_icon.rb
phlex-lucide-0.427.1 lib/phlex/lucide/icons/camera_off_icon.rb
phlex-lucide-0.427.0 lib/phlex/lucide/icons/camera_off_icon.rb