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