Sha256: 76305c61243df99906a32bc2c6266ae44a785fc454c616ee9670d4a33a47f0a7
Contents?: true
Size: 674 Bytes
Versions: 14
Compression:
Stored size: 674 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Loader3 < 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: 'M3 12a9 9 0 0 0 9 9a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9') s.path(d: 'M17 12a5 5 0 1 0 -5 5') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems