Sha256: 00e3e700ab9c68c72d923d2a3cbadf6b5e0e9ad26c9cb98c89fd0e873ac3906e
Contents?: true
Size: 769 Bytes
Versions: 18
Compression:
Stored size: 769 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Save < 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: 'M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z' ) s.path(d: 'M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7') s.path(d: 'M7 3v4a1 1 0 0 0 1 1h7') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems