Sha256: 7d510470ff7190b9063b5fb3c5384ac0f002fd0c3b82ae63a7aa77aefd382047
Contents?: true
Size: 786 Bytes
Versions: 12
Compression:
Stored size: 786 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class HeartX < 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: 'M19.5 12.572l-.5 .428m-6 6l-1 1l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572' ) s.path(d: 'M22 22l-5 -5') s.path(d: 'M17 22l5 -5') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems