Sha256: b2dfac6713d1c3351002f6d31833aad26d666e4d46429155c4e970560299c1a0
Contents?: true
Size: 809 Bytes
Versions: 14
Compression:
Stored size: 809 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class CurrencyKroneDanish < 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 6v12') s.path(d: 'M5 12c3.5 0 6 -3 6 -6') s.path(d: 'M5 12c3.5 0 6 3 6 6') s.path(d: 'M15 10v8') s.path(d: 'M19 10a4 4 0 0 0 -4 4') s.path(d: 'M20 18.01v-.01') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems