Sha256: 854b51da4d37475bf768eb6c78f0076163d0076f58f0eca06c7d020b3b5b3e20
Contents?: true
Size: 664 Bytes
Versions: 26
Compression:
Stored size: 664 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Link < 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: '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
26 entries across 26 versions & 2 rubygems