Sha256: 364ae1aad24aeefe5b6e3edb4bc99d855d0e30326720ab5c3f56385b326462d1
Contents?: true
Size: 697 Bytes
Versions: 14
Compression:
Stored size: 697 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ClockPlay < 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: 'M12 7v5l2 2') s.path(d: 'M17 22l5 -3l-5 -3z') s.path(d: 'M13.017 20.943a9 9 0 1 1 7.831 -7.292') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems