Sha256: 15bf74312782868d946065b3c1004d99db17a570302537d21ffad3786d342aed

Contents?: true

Size: 974 Bytes

Versions: 3

Compression:

Stored size: 974 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Lucide
    class DramaIcon < 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 11h.01")
          s.path(d: "M14 6h.01")
          s.path(d: "M18 6h.01")
          s.path(d: "M6.5 13.1h.01")
          s.path(d: "M22 5c0 9-4 12-6 12s-6-3-6-12c0-2 2-3 6-3s6 1 6 3")
          s.path(d: "M17.4 9.9c-.8.8-2 .8-2.8 0")
          s.path(
            d:
              "M10.1 7.1C9 7.2 7.7 7.7 6 8.6c-3.5 2-4.7 3.9-3.7 5.6 4.5 7.8 9.5 8.4 11.2 7.4.9-.5 1.9-2.1 1.9-4.7"
          )
          s.path(d: "M9.1 16.5c.3-1.1 1.4-1.7 2.4-1.4")
        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/drama_icon.rb
phlex-lucide-0.427.1 lib/phlex/lucide/icons/drama_icon.rb
phlex-lucide-0.427.0 lib/phlex/lucide/icons/drama_icon.rb