Sha256: 82e8b0fedc9c1e8f5fb28a332e141293ed77d221f8f9e331f68fe1ad139cdd09

Contents?: true

Size: 698 Bytes

Versions: 3

Compression:

Stored size: 698 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Lucide
    class CameraIcon < 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:
              "M14.5 4h-5L7 7H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-3l-2.5-3z"
          )
          s.circle(cx: "12", cy: "13", r: "3")
        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_icon.rb
phlex-lucide-0.427.1 lib/phlex/lucide/icons/camera_icon.rb
phlex-lucide-0.427.0 lib/phlex/lucide/icons/camera_icon.rb