Sha256: 7ae33a2a4c0b952bfd5422d46a7de7958f404e45931d66ede0d54b4002378885
Contents?: true
Size: 688 Bytes
Versions: 26
Compression:
Stored size: 688 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Scaling < 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: 'M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7') s.path(d: 'M14 15H9v-5') s.path(d: 'M16 3h5v5') s.path(d: 'M21 3 9 15') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems