Sha256: 75aeac1846a5da5e6f129ecb945e1e19128ad4011f581406ca0fe863a1d6f0ba

Contents?: true

Size: 679 Bytes

Versions: 3

Compression:

Stored size: 679 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Lucide
    class MicIcon < 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: "M12 2a3 3 0 0 0-3 3v7a3 3 0 0 0 6 0V5a3 3 0 0 0-3-3Z")
          s.path(d: "M19 10v2a7 7 0 0 1-14 0v-2")
          s.line(x1: "12", x2: "12", y1: "19", 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/mic_icon.rb
phlex-lucide-0.427.1 lib/phlex/lucide/icons/mic_icon.rb
phlex-lucide-0.427.0 lib/phlex/lucide/icons/mic_icon.rb