Sha256: c46cfc4c61d9d425edaaac6f0c224da43afbf13985a547bce08b470a9d0347a3
Contents?: true
Size: 578 Bytes
Versions: 12
Compression:
Stored size: 578 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Loader2 < 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' ) { |s| s.path(d: 'M12 3a9 9 0 1 0 9 9') } end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems