Sha256: 38fe5e9e37a26f9ab35ec3d2e4c122047fdfdd738a71baba797f239b4bf0402f
Contents?: true
Size: 688 Bytes
Versions: 14
Compression:
Stored size: 688 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ClockMinus < 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.477 15.022a9 9 0 1 0 -7.998 5.965') s.path(d: 'M12 7v5l3 3') s.path(d: 'M16 19h6') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems