Sha256: 04db51d2475e9a3873a7e92afec17d76acd4c363894fcd48e3e31683af4fcfab
Contents?: true
Size: 684 Bytes
Versions: 12
Compression:
Stored size: 684 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class LoaderQuarter < 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: 'M12 6l0 -3') s.path(d: 'M6 12l-3 0') s.path(d: 'M7.75 7.75l-2.15 -2.15') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems