Sha256: c18d8b0a6149691f5e38d019ea5b8c1da1dc71753db42ca1e7fe6f2a456b36d2
Contents?: true
Size: 645 Bytes
Versions: 14
Compression:
Stored size: 645 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class CurrencyEuro < 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: 'M17.2 7a6 7 0 1 0 0 10') s.path(d: 'M13 10h-8m0 4h8') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems