Sha256: 74e9fc0d2c965b73d5d158d15228c1cb4adac505ae25fba1f10c4ebb15343ba4
Contents?: true
Size: 960 Bytes
Versions: 26
Compression:
Stored size: 960 Bytes
Contents
# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Lucide class Handshake < 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: 'm11 17 2 2a1 1 0 1 0 3-3') s.path( d: 'm14 14 2.5 2.5a1 1 0 1 0 3-3l-3.88-3.88a3 3 0 0 0-4.24 0l-.88.88a1 1 0 1 1-3-3l2.81-2.81a5.79 5.79 0 0 1 7.06-.87l.47.28a2 2 0 0 0 1.42.25L21 4' ) s.path(d: 'm21 3 1 11h-2') s.path(d: 'M3 3 2 14l6.5 6.5a1 1 0 1 0 3-3') s.path(d: 'M3 4h8') end end end end end end # rubocop:enable Layout/LineLength
Version data entries
26 entries across 26 versions & 2 rubygems