Sha256: ac71947dafe40702932e4e2ca71a4d7109a0372cef1651f1ba066ab0ea69d8c0
Contents?: true
Size: 685 Bytes
Versions: 14
Compression:
Stored size: 685 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class CurrencyKip < 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: 'M6 12h12') s.path(d: 'M9 5v14') s.path(d: 'M16 19a7 7 0 0 0 -7 -7a7 7 0 0 0 7 -7') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems