Sha256: 1ccf5360e2b69ba1396acbd1709c1f1ca12e7a70ec3075cc04d06af724be0dcb
Contents?: true
Size: 790 Bytes
Versions: 14
Compression:
Stored size: 790 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandGmail < 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: 'M16 20h3a1 1 0 0 0 1 -1v-14a1 1 0 0 0 -1 -1h-3v16z') s.path(d: 'M5 20h3v-16h-3a1 1 0 0 0 -1 1v14a1 1 0 0 0 1 1z') s.path(d: 'M16 4l-4 4l-4 -4') s.path(d: 'M4 6.5l8 7.5l8 -7.5') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems