Sha256: 81941b855059faa615e3bbed30693bf8fee3d71c49850a3f7cd5b096b431449a
Contents?: true
Size: 772 Bytes
Versions: 12
Compression:
Stored size: 772 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Heartbeat < 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 13.572l-7.5 7.428l-2.896 -2.868m-6.117 -8.104a5 5 0 0 1 9.013 -3.022a5 5 0 1 1 7.5 6.572' ) s.path(d: 'M3 13h2l2 3l2 -6l1 3h3') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems