Sha256: c227fb2f9733d30f65f30f0c839f18fe827d3dd51f1711d4b2103e7d8853b165
Contents?: true
Size: 870 Bytes
Versions: 26
Compression:
Stored size: 870 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Figma < 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: 'M5 5.5A3.5 3.5 0 0 1 8.5 2H12v7H8.5A3.5 3.5 0 0 1 5 5.5z') s.path(d: 'M12 2h3.5a3.5 3.5 0 1 1 0 7H12V2z') s.path(d: 'M12 12.5a3.5 3.5 0 1 1 7 0 3.5 3.5 0 1 1-7 0z') s.path(d: 'M5 19.5A3.5 3.5 0 0 1 8.5 16H12v3.5a3.5 3.5 0 1 1-7 0z') s.path(d: 'M5 12.5A3.5 3.5 0 0 1 8.5 9H12v7H8.5A3.5 3.5 0 0 1 5 12.5z') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems