Sha256: 5d007826f50ec5fc12a75b4ab0218e00e2432a10e1f5a06cb1c0cfb091bb6515
Contents?: true
Size: 1.01 KB
Versions: 14
Compression:
Stored size: 1.01 KB
Contents
# frozen_string_literal: true # rubocop:disable Metrics/MethodLength module Phlex module Icons module Lucide class ReplaceAll < 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: 'M14 14a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2') s.path(d: 'M14 4a2 2 0 0 1 2-2') s.path(d: 'M16 10a2 2 0 0 1-2-2') s.path(d: 'M20 14a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2') s.path(d: 'M20 2a2 2 0 0 1 2 2') s.path(d: 'M22 8a2 2 0 0 1-2 2') s.path(d: 'm3 7 3 3 3-3') s.path(d: 'M6 10V5a 3 3 0 0 1 3-3h1') s.rect(x: '2', y: '14', width: '8', height: '8', rx: '2') end end end end end end # rubocop:enable Metrics/MethodLength
Version data entries
14 entries across 14 versions & 2 rubygems