Sha256: 09e500d1cfabe3029cb3f310b0d8907ed417c09406f27bcd3bb6e8aabbe78ce6
Contents?: true
Size: 727 Bytes
Versions: 12
Compression:
Stored size: 727 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ClockPlus < 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: 'M20.984 12.535a9 9 0 1 0 -8.468 8.45') s.path(d: 'M16 19h6') s.path(d: 'M19 16v6') s.path(d: 'M12 7v5l3 3') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems