Sha256: a713ef5397a345129bbdf31251e9b4036872727449f4afcc292e1000b93d3ac2
Contents?: true
Size: 696 Bytes
Versions: 12
Compression:
Stored size: 696 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class CurrencyPeso < Base def filled raise NotImplementedError end def outline svg( class: classes, 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
12 entries across 12 versions & 2 rubygems