Sha256: 6cb1bd0e330f4fd5e480fecf597778e1c8a42779489f333186769f3481eaca9b
Contents?: true
Size: 819 Bytes
Versions: 12
Compression:
Stored size: 819 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandDigg < 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 15h-3v-4h3') s.path(d: 'M15 15h-3v-4h3') s.path(d: 'M9 15v-4') s.path(d: 'M15 11v7h-3') s.path(d: 'M6 7v8') s.path(d: 'M21 15h-3v-4h3') s.path(d: 'M21 11v7h-3') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems