Sha256: 472c0f998364b60c12fbc220768875db55cd242ca8b430d70b3b03091689c7f7
Contents?: true
Size: 677 Bytes
Versions: 14
Compression:
Stored size: 677 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class CurrencyLira < 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 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
14 entries across 14 versions & 2 rubygems