Sha256: 97a3d26ac0eae00229e2d1750ab83b48d405e29c781462e8b6721f81181aed7b
Contents?: true
Size: 779 Bytes
Versions: 12
Compression:
Stored size: 779 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class SquareRoundedPercentage < 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 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z') s.path(d: 'M9 15.075l6 -6') s.path(d: 'M9 9.105v.015') s.path(d: 'M15 15.12v.015') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems