Sha256: 8e2702375f2b86f5592acbc8431be8fb246dd0584c101071c8ff3839b432d5e5
Contents?: true
Size: 850 Bytes
Versions: 14
Compression:
Stored size: 850 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class MoodX < 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: 'M20.983 12.556a9 9 0 1 0 -8.433 8.427') s.path(d: 'M9 10h.01') s.path(d: 'M15 10h.01') s.path(d: 'M9.5 15c.658 .64 1.56 1 2.5 1c.194 0 .386 -.015 .574 -.045') s.path(d: 'M21.5 21.5l-5 -5') s.path(d: 'M16.5 21.5l5 -5') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems