Sha256: ddc14063c37792cc162c03e77d3931266bd0e01b0df0cedb66097a140f0f5e82
Contents?: true
Size: 705 Bytes
Versions: 14
Compression:
Stored size: 705 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Languages < 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: '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
14 entries across 14 versions & 2 rubygems