Sha256: 5c044ac9c3f085b9f3676f942b9658294d2d00e929bd978df397bb95abe79379
Contents?: true
Size: 815 Bytes
Versions: 14
Compression:
Stored size: 815 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class AlignBoxCenterStretch < 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: 'M3 19v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z' ) s.path(d: 'M11 17h2') s.path(d: 'M9 12h6') s.path(d: 'M10 7h4') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems