Sha256: bf4ab0d494a2127714a0b0e64cd2e05f055d99052b85113d96fb0bfd7395ed6a
Contents?: true
Size: 605 Bytes
Versions: 12
Compression:
Stored size: 605 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ActivityHeartbeat < 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' ) { |s| s.path(d: 'M3 12h4.5l1.5 -6l4 12l2 -9l1.5 3h4.5') } end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems