Sha256: cbbe4199b2bb33bdd7ee8805e70b2fd1b97b0daaf732a57a9061e5e869ce789b
Contents?: true
Size: 689 Bytes
Versions: 18
Compression:
Stored size: 689 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class CurrencyPeso < 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: 'M8 19v-14h3.5a4.5 4.5 0 1 1 0 9h-3.5') s.path(d: 'M18 8h-12') s.path(d: 'M18 11h-12') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems