Sha256: 6efa36a3978b190b211525e513cf9a6735e945e21661601de6a3170019915e8a
Contents?: true
Size: 746 Bytes
Versions: 18
Compression:
Stored size: 746 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Linkedin < 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: '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
18 entries across 18 versions & 2 rubygems