Sha256: 9f18c556ed29ec7225f3baa57c1ee8a5d5bc5cfcb88222197db5c1807d6b247a
Contents?: true
Size: 652 Bytes
Versions: 18
Compression:
Stored size: 652 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class SquarePower < 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: 'M12 7v4') s.path(d: 'M7.998 9.003a5 5 0 1 0 8-.005') s.rect(x: '3', y: '3', width: '18', height: '18', rx: '2') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems