Sha256: 2ccf951ce1b4db2194547497c17b5917d7debe272f60a8163409d3006f693c72

Contents?: true

Size: 740 Bytes

Versions: 3

Compression:

Stored size: 740 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Lucide
    class AccessibilityIcon < 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: "16", cy: "4", r: "1")
          s.path(d: "m18 19 1-7-6 1")
          s.path(d: "m5 8 3-3 5.5 3-2.36 3.5")
          s.path(d: "M4.24 14.5a5 5 0 0 0 6.88 6")
          s.path(d: "M13.76 17.5a5 5 0 0 0-6.88-6")
        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/accessibility_icon.rb
phlex-lucide-0.427.1 lib/phlex/lucide/icons/accessibility_icon.rb
phlex-lucide-0.427.0 lib/phlex/lucide/icons/accessibility_icon.rb