Sha256: 2b2567866a06bf6bbe9dd1047fb22ac3e6b83e059ff9aa1cb9d7076d47e4ac9b
Contents?: true
Size: 750 Bytes
Versions: 14
Compression:
Stored size: 750 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Switch < 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: 'M15 4l4 0l0 4') s.path(d: 'M14.75 9.25l4.25 -5.25') s.path(d: 'M5 19l4 -4') s.path(d: 'M15 19l4 0l0 -4') s.path(d: 'M5 5l14 14') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems