Sha256: 4a19f4301c1e7427d462e4ecdd88c48e0b18ff29387ab0ca797323b93b5f9e9b

Contents?: true

Size: 747 Bytes

Versions: 3

Compression:

Stored size: 747 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Lucide
    class BeanIcon < 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.165 6.598C9.954 7.478 9.64 8.36 9 9c-.64.64-1.521.954-2.402 1.165A6 6 0 0 0 8 22c7.732 0 14-6.268 14-14a6 6 0 0 0-11.835-1.402Z"
          )
          s.path(d: "M5.341 10.62a4 4 0 1 0 5.279-5.28")
        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/bean_icon.rb
phlex-lucide-0.427.1 lib/phlex/lucide/icons/bean_icon.rb
phlex-lucide-0.427.0 lib/phlex/lucide/icons/bean_icon.rb