Sha256: b45414f52025e4333eec0cde53c6cb9ed6d561f8d2b5f65e9f1608cb39a1f213
Contents?: true
Size: 629 Bytes
Versions: 14
Compression:
Stored size: 629 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Ratio < 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.rect(width: '12', height: '20', x: '6', y: '2', rx: '2') s.rect(width: '20', height: '12', x: '2', y: '6', rx: '2') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems