Sha256: edcadf6dcbfff88bc2d9fa20d2d1c132741da81720b36bb90a55b33603655987
Contents?: true
Size: 751 Bytes
Versions: 14
Compression:
Stored size: 751 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class CaptionsOff < Base def view_template svg( **attrs, 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
14 entries across 14 versions & 2 rubygems