Sha256: d25d64832324cb403dbd9ff4ee2b466793be596c3b424ce2fe537604322d8da2
Contents?: true
Size: 823 Bytes
Versions: 18
Compression:
Stored size: 823 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Receipt2 < 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: 'M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2' ) s.path( d: 'M14 8h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5m2 0v1.5m0 -9v1.5' ) end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems