Sha256: 91af4c9ad694bff6f0da799490a0092fed853a06f82392d1fa349ab05cc44ad1
Contents?: true
Size: 747 Bytes
Versions: 14
Compression:
Stored size: 747 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class LetterCaseUpper < 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-10.5a3.5 3.5 0 0 1 7 0v10.5') s.path(d: 'M3 13h7') s.path(d: 'M14 19v-10.5a3.5 3.5 0 0 1 7 0v10.5') s.path(d: 'M14 13h7') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems