Sha256: 0b2ca9a28a988a2a62e95360b78d882256b7f7ae33a5918289042e2e55e28662
Contents?: true
Size: 751 Bytes
Versions: 12
Compression:
Stored size: 751 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class HeartCancel < 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 20l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 0 1 7.993 6.01') s.path(d: 'M19 19m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0') s.path(d: 'M17 21l4 -4') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems