Sha256: 88e3f71aeb67cd1ed89b230b27b454201122e1797a3ec1bda86ed96c6663604e
Contents?: true
Size: 865 Bytes
Versions: 18
Compression:
Stored size: 865 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class MoodTongueWink < 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 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z') s.path(d: 'M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0') s.path(d: 'M9 10h.01') s.path(d: 'M10 14v2a2 2 0 0 0 4 0v-2') s.path(d: 'M15.5 14h-7') s.path(d: 'M17 10c-.5 -1 -2.5 -1 -3 0') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems