Sha256: 63df679facb848c458cbcacdfe6c1968e03cdb2a4511ff6140ab0bf88b2a5e72
Contents?: true
Size: 729 Bytes
Versions: 14
Compression:
Stored size: 729 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ClockExclamation < 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: 'M20.986 12.502a9 9 0 1 0 -5.973 7.98') s.path(d: 'M12 7v5l3 3') s.path(d: 'M19 16v3') s.path(d: 'M19 22v.01') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems