Sha256: c4c04b9bba7ed7e210d75d2f43ce73b2ae79e71be0e23278d8b2559b08b80a30
Contents?: true
Size: 679 Bytes
Versions: 12
Compression:
Stored size: 679 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class CurrencyLitecoin < 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: 'M18 19h-8.194a2 2 0 0 1 -1.98 -2.283l1.674 -11.717') s.path(d: 'M14 9l-9 4') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems