Sha256: 58025260faedab01fdb6dbebf4a93269e4679e181a194123b3882ff67a7bf239
Contents?: true
Size: 832 Bytes
Versions: 14
Compression:
Stored size: 832 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Focus2 < 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.circle(cx: '12', cy: '12', r: '.5', fill: 'currentColor') s.path(d: 'M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0') s.path(d: 'M12 3l0 2') s.path(d: 'M3 12l2 0') s.path(d: 'M12 19l0 2') s.path(d: 'M19 12l2 0') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems