Sha256: ba08dcca03eb69f7339669fa7e0ce554c83cf6a6d5c01c5022fff159b2abb453
Contents?: true
Size: 955 Bytes
Versions: 14
Compression:
Stored size: 955 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class TransactionDollar < 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: 'M20.8 13a2 2 0 0 0 -1.8 -1h-2a2 2 0 1 0 0 4h2a2 2 0 1 1 0 4h-2a2 2 0 0 1 -1.8 -1' ) s.path(d: 'M18 11v10') s.path(d: 'M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0') s.path(d: 'M17 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0') s.path(d: 'M7 5h8') s.path(d: 'M7 5v8a3 3 0 0 0 3 3h1') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems