Sha256: 579fe2f6d82ff1dfd205bc6716da359beeb5b3965ffd5435915a3368f9df9019
Contents?: true
Size: 715 Bytes
Versions: 18
Compression:
Stored size: 715 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Frame < 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.line(x1: '22', x2: '2', y1: '6', y2: '6') s.line(x1: '22', x2: '2', y1: '18', y2: '18') s.line(x1: '6', x2: '6', y1: '2', y2: '22') s.line(x1: '18', x2: '18', y1: '2', y2: '22') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems