Sha256: e7d2ac78f14511394b11b837f7eb5ddae9811a89483bc54bdbbae3a390449ca1
Contents?: true
Size: 924 Bytes
Versions: 12
Compression:
Stored size: 924 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Whirl < 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: 'M14 12a2 2 0 1 0 -4 0a2 2 0 0 0 4 0z') s.path(d: 'M12 21c-3.314 0 -6 -2.462 -6 -5.5s2.686 -5.5 6 -5.5') s.path(d: 'M21 12c0 3.314 -2.462 6 -5.5 6s-5.5 -2.686 -5.5 -6') s.path(d: 'M12 14c3.314 0 6 -2.462 6 -5.5s-2.686 -5.5 -6 -5.5') s.path(d: 'M14 12c0 -3.314 -2.462 -6 -5.5 -6s-5.5 2.686 -5.5 6') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems