Sha256: eed976e4b24d08fc2066a05991f0ecd2f8d8ca38611dc986c52a0f957a4ce0b9

Contents?: true

Size: 881 Bytes

Versions: 3

Compression:

Stored size: 881 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Lucide
    class EggOffIcon < 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:
              "M6.399 6.399C5.362 8.157 4.65 10.189 4.5 12c-.37 4.43 1.27 9.95 7.5 10 3.256-.026 5.259-1.547 6.375-3.625"
          )
          s.path(
            d:
              "M19.532 13.875A14.07 14.07 0 0 0 19.5 12c-.36-4.34-3.95-9.96-7.5-10-1.04.012-2.082.502-3.046 1.297"
          )
          s.line(x1: "2", x2: "22", y1: "2", y2: "22")
        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/egg_off_icon.rb
phlex-lucide-0.427.1 lib/phlex/lucide/icons/egg_off_icon.rb
phlex-lucide-0.427.0 lib/phlex/lucide/icons/egg_off_icon.rb