Sha256: be5abe34e9981a3a6482d73b2a25011294ccb5012410a340af76aa2050aa573d
Contents?: true
Size: 581 Bytes
Versions: 14
Compression:
Stored size: 581 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Facebook < 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: 'M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems