Sha256: 3ce3781f27fe81f17eda43248f8594840d849b43ce986a97c6b01ee771804976
Contents?: true
Size: 826 Bytes
Versions: 14
Compression:
Stored size: 826 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class MoodCheck < 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.925 13.163a8.998 8.998 0 0 0 -8.925 -10.163a9 9 0 0 0 0 18') 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 1s1.842 -.36 2.5 -1') s.path(d: 'M15 19l2 2l4 -4') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems