Sha256: ade77d6b80b3f992eaea36bcad3d31547e6e7f03bead687d1e0e468e31171ce2
Contents?: true
Size: 820 Bytes
Versions: 14
Compression:
Stored size: 820 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class MoodSmileDizzy < 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 15a3.5 3.5 0 0 1 -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