Sha256: 9b0881783927c3c4703f6f285eaa06ed1fce2bb06913a0827e959b3df220c2b3
Contents?: true
Size: 770 Bytes
Versions: 18
Compression:
Stored size: 770 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class CurrencyKroneSwedish < 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') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems