Sha256: 79846f179341274b695ec7968523bbe0907abe2632982af1b86ebefbf6e4f22e
Contents?: true
Size: 777 Bytes
Versions: 12
Compression:
Stored size: 777 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class CurrencyKroneSwedish < 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: '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
12 entries across 12 versions & 2 rubygems