Sha256: da2caf5200690ea0d9f4b72a42c48fed8a7df2edc8c8af5f8ebdffe2db98657e
Contents?: true
Size: 716 Bytes
Versions: 18
Compression:
Stored size: 716 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Paperclip < Base def filled raise NotImplementedError end def outline 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 7l-6.5 6.5a1.5 1.5 0 0 0 3 3l6.5 -6.5a3 3 0 0 0 -6 -6l-6.5 6.5a4.5 4.5 0 0 0 9 9l6.5 -6.5' ) end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems