Sha256: 7e2fa8261fb4f0b6a9470f8851f2f9fccfb26ed626a613d1c06e482296c03247

Contents?: true

Size: 758 Bytes

Versions: 26

Compression:

Stored size: 758 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Icons
    module Lucide
      class CaptionsOff < Base
        def view_template
          svg(
            class: classes,
            xmlns: 'http://www.w3.org/2000/svg',
            viewbox: '0 0 24 24',
            fill: 'none',
            stroke: 'currentColor',
            stroke_width: '2',
            stroke_linecap: 'round',
            stroke_linejoin: 'round'
          ) do |s|
            s.path(d: 'M10.5 5H19a2 2 0 0 1 2 2v8.5')
            s.path(d: 'M17 11h-.5')
            s.path(d: 'M19 19H5a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2')
            s.path(d: 'm2 2 20 20')
            s.path(d: 'M7 11h4')
            s.path(d: 'M7 15h2.5')
          end
        end
      end
    end
  end
end

Version data entries

26 entries across 26 versions & 2 rubygems

Version Path
phlex-icons-lucide-0.6.0 lib/phlex/icons/lucide/captions_off.rb
phlex-icons-0.5.0 lib/phlex/icons/lucide/captions_off.rb
phlex-icons-0.4.0 lib/phlex/icons/lucide/captions_off.rb
phlex-icons-0.3.0 lib/phlex/icons/lucide/captions_off.rb
phlex-icons-0.2.0 lib/phlex/icons/lucide/captions_off.rb
phlex-icons-0.1.0 lib/phlex/icons/lucide/captions_off.rb