Sha256: 2a938c0f2da99a675abe3ee5e0f2a995e16c3f07c9ed6a04be86ec707ac6225a
Contents?: true
Size: 797 Bytes
Versions: 12
Compression:
Stored size: 797 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandWhatsapp < Base def filled raise NotImplementedError end def outline svg( class: classes, 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: 'M3 21l1.65 -3.8a9 9 0 1 1 3.4 2.9l-5.05 .9') s.path( d: 'M9 10a.5 .5 0 0 0 1 0v-1a.5 .5 0 0 0 -1 0v1a5 5 0 0 0 5 5h1a.5 .5 0 0 0 0 -1h-1a.5 .5 0 0 0 0 1' ) end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems