Sha256: e0131c8ae8f43e0c65e313363652404dfbce5bd39bc72cdbb8a4b909ee1dcb9c
Contents?: true
Size: 844 Bytes
Versions: 12
Compression:
Stored size: 844 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Clock2 < 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: 'M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z' ) s.path(d: 'M12 7v5l3 3') s.path(d: 'M4 12h1') s.path(d: 'M19 12h1') s.path(d: 'M12 19v1') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems