Sha256: 241cccba147b1509b1eeec77674f32a0b09ba41ae4ef4c14d63f1d94318f33c6
Contents?: true
Size: 845 Bytes
Versions: 18
Compression:
Stored size: 845 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ReceiptYen < 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: 'M9 11h6') s.path(d: 'M9 14h6') s.path(d: 'M9 7l3 4.5') s.path(d: 'M15 7l-3 4.5v4.5') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems