Sha256: f077f9b81dde61b89f2fc7d6f2cba436ead4bad09b7c481e5067accfba21803d
Contents?: true
Size: 712 Bytes
Versions: 26
Compression:
Stored size: 712 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Languages < 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: 'm5 8 6 6') s.path(d: 'm4 14 6-6 2-3') s.path(d: 'M2 5h12') s.path(d: 'M7 2h1') s.path(d: 'm22 22-5-10-5 10') s.path(d: 'M14 18h6') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems