Sha256: 0c1e7e6ec9738dcdeef09237a1a3b642ff6a27862792b4252bde4fc2ea29de46
Contents?: true
Size: 946 Bytes
Versions: 12
Compression:
Stored size: 946 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandDenodo < 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: 'M11 11h2v2h-2z') s.path(d: 'M3.634 15.634l1.732 -1l1 1.732l-1.732 1z') s.path(d: 'M11 19h2v2h-2z') s.path(d: 'M18.634 14.634l1.732 1l-1 1.732l-1.732 -1z') s.path(d: 'M17.634 7.634l1.732 -1l1 1.732l-1.732 1z') s.path(d: 'M11 3h2v2h-2z') s.path(d: 'M3.634 8.366l1 -1.732l1.732 1l-1 1.732z') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems