Sha256: 88f9a39f52d9e5bc4c412850b064141caa55b84d9edff87cbbcbcf4e508daaf8
Contents?: true
Size: 824 Bytes
Versions: 12
Compression:
Stored size: 824 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandBinance < 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: 'M6 8l2 2l4 -4l4 4l2 -2l-6 -6z') s.path(d: 'M6 16l2 -2l4 4l3.5 -3.5l2 2l-5.5 5.5z') s.path(d: 'M20 10l2 2l-2 2l-2 -2z') s.path(d: 'M4 10l2 2l-2 2l-2 -2z') s.path(d: 'M12 10l2 2l-2 2l-2 -2z') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems