Sha256: 71845dfa6e4ed8efe9afa30d555f1d3d5481e7830fee202ac6a3b75d4990d9c0
Contents?: true
Size: 633 Bytes
Versions: 6
Compression:
Stored size: 633 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class EqualApproximately < 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: 'M5 15a6.5 6.5 0 0 1 7 0 6.5 6.5 0 0 0 7 0') s.path(d: 'M5 9a6.5 6.5 0 0 1 7 0 6.5 6.5 0 0 0 7 0') end end end end end end
Version data entries
6 entries across 6 versions & 2 rubygems