Sha256: cc46ea3becac029c42cb5cdff8203942b696498bdcea2a2564f18b042cd70e93
Contents?: true
Size: 608 Bytes
Versions: 14
Compression:
Stored size: 608 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Undo2 < 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: 'M9 14 4 9l5-5') s.path(d: 'M4 9h10.5a5.5 5.5 0 0 1 5.5 5.5a5.5 5.5 0 0 1-5.5 5.5H11') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems