Sha256: ab632b597886920f329eff98f32b3069f94472677000193fc9aa17c577b3cf76
Contents?: true
Size: 757 Bytes
Versions: 18
Compression:
Stored size: 757 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandAbstract < 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: 'M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z') s.path(d: 'M10.5 13.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0') s.path(d: 'M8 8h8v8') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems