Sha256: 9e1e34127da0b791d6272b0edf7ad28f65da1b1d8b58ec576accd520a5da1c18
Contents?: true
Size: 633 Bytes
Versions: 26
Compression:
Stored size: 633 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Captions < 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.rect(width: '18', height: '14', x: '3', y: '5', rx: '2', ry: '2') s.path(d: 'M7 15h4M15 15h2M7 11h2M13 11h4') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems