Sha256: ea7d5bee97137685c91a2078fd2ad15bdf11c0b7b7ade6be85d6a477ef64213a
Contents?: true
Size: 765 Bytes
Versions: 14
Compression:
Stored size: 765 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Heartbeat < 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: '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
14 entries across 14 versions & 2 rubygems