Sha256: b752c3db70d04dc3c1628db0e2d30b07f738386b93276ea5556e7a799fa354dc
Contents?: true
Size: 746 Bytes
Versions: 14
Compression:
Stored size: 746 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class SquarePlus2 < Base def filled raise NotImplementedError end def outline 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: 'M12.5 21h-7.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5' ) s.path(d: 'M16 19h6') s.path(d: 'M19 16v6') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems