Sha256: 376b8a26d9262e429bdfdf86986e5ac31c69c72a626f82f59980604de3b5af98

Contents?: true

Size: 681 Bytes

Versions: 3

Compression:

Stored size: 681 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Lucide
    class CoinsIcon < 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.circle(cx: "8", cy: "8", r: "6")
          s.path(d: "M18.09 10.37A6 6 0 1 1 10.34 18")
          s.path(d: "M7 6h1v4")
          s.path(d: "m16.71 13.88.7.71-2.82 2.82")
        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/coins_icon.rb
phlex-lucide-0.427.1 lib/phlex/lucide/icons/coins_icon.rb
phlex-lucide-0.427.0 lib/phlex/lucide/icons/coins_icon.rb