Sha256: 69499c74fbf0226309a816b336a3f374064c8693ca2c0eab7e2257d64fc47460
Contents?: true
Size: 821 Bytes
Versions: 14
Compression:
Stored size: 821 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class MoodSadDizzy < 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: 'M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0') s.path(d: 'M14.5 16.05a3.5 3.5 0 0 0 -5 0') s.path(d: 'M8 9l2 2') s.path(d: 'M10 9l-2 2') s.path(d: 'M14 9l2 2') s.path(d: 'M16 9l-2 2') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems