Sha256: e73bd4d795d9d619bb59b65bc9a701134c4e14e6a324188c673de21425cdcc3e
Contents?: true
Size: 735 Bytes
Versions: 12
Compression:
Stored size: 735 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandOpenSource < 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: 'M12 3a9 9 0 0 1 3.618 17.243l-2.193 -5.602a3 3 0 1 0 -2.849 0l-2.193 5.603a9 9 0 0 1 3.617 -17.244z' ) end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems