Sha256: 2fd6a590d31b366551c9a2328cea4fc3f263de8ff11c42f78215a8be3daa1c80
Contents?: true
Size: 701 Bytes
Versions: 14
Compression:
Stored size: 701 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandGoogleDrive < 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 10l-6 10l-3 -5l6 -10z') s.path(d: 'M9 15h12l-3 5h-12') s.path(d: 'M15 15l-6 -10h6l6 10z') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems