Sha256: 6e980d00b1f2fdf7f1cee8e179a8a4e7ad8d9721c14eacccd2dc53efb3dbdd1e
Contents?: true
Size: 835 Bytes
Versions: 18
Compression:
Stored size: 835 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Prong < 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: 'M10.2 10.2l6.3 6.3') s.path( d: 'M19.347 16.575l1.08 1.079a1.96 1.96 0 0 1 -2.773 2.772l-1.08 -1.079a1.96 1.96 0 0 1 2.773 -2.772z' ) s.path(d: 'M3 7l3.05 3.15a2.9 2.9 0 0 0 4.1 -4.1l-3.15 -3.05') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems