Sha256: 1ce618c0a839773af14a794a037ae9ff4ac02cd840ce4790f5d7c8284fea1cc3
Contents?: true
Size: 855 Bytes
Versions: 10
Compression:
Stored size: 855 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class CarFan < 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: 'M12 12v-9l4.912 1.914a1.7 1.7 0 0 1 .428 2.925z') s.path(d: 'M12 12h9l-1.914 4.912a1.7 1.7 0 0 1 -2.925 .428z') s.path(d: 'M12 12h-9l1.914 -4.912a1.7 1.7 0 0 1 2.925 -.428z') s.path(d: 'M12 12v9l-4.912 -1.914a1.7 1.7 0 0 1 -.428 -2.925z') end end end end end end
Version data entries
10 entries across 10 versions & 2 rubygems