Sha256: 30bac4ab91b5202e391e4f0dafe228e88a5e086ab7f79d6c6ffe6a05c980d856
Contents?: true
Size: 531 Bytes
Versions: 14
Compression:
Stored size: 531 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Framer < 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' ) { |s| s.path(d: 'M5 16V9h14V2H5l14 14h-7m-7 0 7 7v-7m-7 0h7') } end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems