Sha256: ab5cd089bd42afcd9f0651fa978cd4f017eb828292a43d11f5d56d1f3ee58239
Contents?: true
Size: 788 Bytes
Versions: 12
Compression:
Stored size: 788 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Percentage66 < 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 3a9 9 0 1 1 -7.795 13.498l7.795 -4.498z', fill: 'currentColor', stroke: 'none' ) s.path(d: 'M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems