Sha256: 58c0602593a4742c2d687b60c9e1bbee9fe5ec61df0be6140933565e835ce6fc

Contents?: true

Size: 694 Bytes

Versions: 3

Compression:

Stored size: 694 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Lucide
    class LetterTextIcon < 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: "M15 12h6")
          s.path(d: "M15 6h6")
          s.path(d: "m3 13 3.553-7.724a.5.5 0 0 1 .894 0L11 13")
          s.path(d: "M3 18h18")
          s.path(d: "M4 11h6")
        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/letter_text_icon.rb
phlex-lucide-0.427.1 lib/phlex/lucide/icons/letter_text_icon.rb
phlex-lucide-0.427.0 lib/phlex/lucide/icons/letter_text_icon.rb