Sha256: e8d80052f3e41b10b8df827cd414b015abe146e3270405d5e63a0b67e52e2400
Contents?: true
Size: 693 Bytes
Versions: 12
Compression:
Stored size: 693 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class CirclePlus2 < 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: 'M20.985 12.522a9 9 0 1 0 -8.475 8.464') s.path(d: 'M16 19h6') s.path(d: 'M19 16v6') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems