Sha256: a644b4cd81ed765d6d38925c9195dc74039b3a71844a16a8b224403795409539
Contents?: true
Size: 818 Bytes
Versions: 12
Compression:
Stored size: 818 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class AlignBoxCenterTop < Base def filled raise NotImplementedError end def outline 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: '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 13h2') s.path(d: 'M9 10h6') s.path(d: 'M10 7h4') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems