Sha256: ebbf0be1dad47c03bb2d5b511602fe59c6f198cff03268d0a133f3fd69f628c2
Contents?: true
Size: 912 Bytes
Versions: 14
Compression:
Stored size: 912 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class FlagBitcoin < 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 21v-6m2 0v-1.5m0 9v-1.5m-2 -3h3m-1 0h.5a1.5 1.5 0 0 1 0 3h-3.5m3 -3h.5a1.5 1.5 0 0 0 0 -3h-3.5' ) s.path( d: 'M13.222 14.882a5 5 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') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems