Sha256: 7f230c3f9c88ac6fda39134f6dfd293f1bf6c287499d0572c46f202a6d577717
Contents?: true
Size: 785 Bytes
Versions: 12
Compression:
Stored size: 785 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class StatusChange < 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: 'M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0') s.path(d: 'M18 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0') s.path(d: 'M6 12v-2a6 6 0 1 1 12 0v2') s.path(d: 'M15 9l3 3l3 -3') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems