Sha256: 5cb92f59c905a764f7e4c8fe1c3f835f991935db91789ccd77e6d40ae0542821
Contents?: true
Size: 709 Bytes
Versions: 18
Compression:
Stored size: 709 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class CongruentTo < 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: 'M5 13h14') s.path(d: 'M5 17h14') s.path(d: 'M5 7.686c2.333 -2.624 4.667 -1.856 7 .064s4.667 2.688 7 .064') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems