Sha256: 4135425c66ce9f57d890ed95caba093a5b611ba3aeb5760925a867b941a8236d
Contents?: true
Size: 753 Bytes
Versions: 26
Compression:
Stored size: 753 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Linkedin < 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: 'M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z' ) s.rect(width: '4', height: '12', x: '2', y: '9') s.circle(cx: '4', cy: '4', r: '2') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems