Sha256: 10ed73917d39b18f37045104b222f0947cc0ddfd04cf66a209b3c76a33e75c1c
Contents?: true
Size: 657 Bytes
Versions: 14
Compression:
Stored size: 657 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Link < 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: 'M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71') s.path(d: 'M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems