Sha256: c0b17a2f4d1da0b7de59d46a615fb3b008c16406b7115844f6f01b9232fc591d
Contents?: true
Size: 872 Bytes
Versions: 14
Compression:
Stored size: 872 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class FlagDollar < 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: 'M13.222 14.882a4.998 4.998 0 0 1 -1.222 -.882a5 5 0 0 0 -7 0v-9a5 5 0 0 1 7 0a5 5 0 0 0 7 0v5' ) s.path(d: 'M5 21v-7') s.path(d: 'M21 15h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5') s.path(d: 'M19 21v1m0 -8v1') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems