Sha256: acc0c1548a32a7218634528429621391e49385102a2372f42f952b856ed27c4d
Contents?: true
Size: 750 Bytes
Versions: 26
Compression:
Stored size: 750 Bytes
Contents
# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Lucide class Paperclip < Base def view_template svg( class: classes, 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: 'm21.44 11.05-9.19 9.19a6 6 0 0 1-8.49-8.49l8.57-8.57A4 4 0 1 1 18 8.84l-8.59 8.57a2 2 0 0 1-2.83-2.83l8.49-8.48' ) end end end end end end # rubocop:enable Layout/LineLength
Version data entries
26 entries across 26 versions & 2 rubygems