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