Sha256: 519cab3104e3a15edae340a6ac876ccdc42ba37f1513155e1daffefad05d45c9
Contents?: true
Size: 684 Bytes
Versions: 12
Compression:
Stored size: 684 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class CurrencyLira < 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: 'M10 5v15a7 7 0 0 0 7 -7') s.path(d: 'M6 15l8 -4') s.path(d: 'M14 7l-8 4') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems