Sha256: f9592777b3402603c5f7a9e74732ecfabc248769219dad24e07fd9183c336714

Contents?: true

Size: 929 Bytes

Versions: 3

Compression:

Stored size: 929 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Lucide
    class ChurchIcon < 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: "M10 9h4")
          s.path(d: "M12 7v5")
          s.path(d: "M14 22v-4a2 2 0 0 0-4 0v4")
          s.path(
            d:
              "M18 22V5.618a1 1 0 0 0-.553-.894l-4.553-2.277a2 2 0 0 0-1.788 0L6.553 4.724A1 1 0 0 0 6 5.618V22"
          )
          s.path(
            d:
              "m18 7 3.447 1.724a1 1 0 0 1 .553.894V20a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9.618a1 1 0 0 1 .553-.894L6 7"
          )
        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/church_icon.rb
phlex-lucide-0.427.1 lib/phlex/lucide/icons/church_icon.rb
phlex-lucide-0.427.0 lib/phlex/lucide/icons/church_icon.rb