Sha256: f5555e846ce8b29306e5948b4bb65808829d9217f6883e654e89b58ff41bd2b3
Contents?: true
Size: 740 Bytes
Versions: 12
Compression:
Stored size: 740 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Windsock < 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 3v18') s.path(d: 'M6 11l12 -1v-4l-12 -1') s.path(d: 'M10 5.5v5') s.path(d: 'M14 6v4') s.path(d: 'M4 21h4') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems