Sha256: 8b1c70e62751b6a95b25f20393bb12a1263052196c8eee0d64491aa6992e2e42
Contents?: true
Size: 687 Bytes
Versions: 14
Compression:
Stored size: 687 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class CurrencySom < 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: 'M10 18v-12h-5v10a2 2 0 0 1 -2 2') s.path(d: 'M14 6v12h4a3 3 0 0 0 0 -6h-4h4a3 3 0 0 0 0 -6h-4z') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems