Sha256: 455691ade1c20ae59f35f7c4d4baa9d51fed583b93f8b4ff23c5144393e4df6d
Contents?: true
Size: 734 Bytes
Versions: 18
Compression:
Stored size: 734 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class PaintBucket < Base def view_template 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: 'm19 11-8-8-8.6 8.6a2 2 0 0 0 0 2.8l5.2 5.2c.8.8 2 .8 2.8 0L19 11Z') s.path(d: 'm5 2 5 5') s.path(d: 'M2 13h15') s.path(d: 'M22 20a2 2 0 1 1-4 0c0-1.6 1.7-2.4 2-4 .3 1.6 2 2.4 2 4Z') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems