Sha256: 362949056aac67ed0f1e70f7f519af5aa14bc3c00870c4080274de130c289297
Contents?: true
Size: 686 Bytes
Versions: 14
Compression:
Stored size: 686 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class CirclePlus2 < 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: '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
14 entries across 14 versions & 2 rubygems