Sha256: 765102e22dd788bf1c8f86350040b63d1a96dafeacbc6d4b74dc1c7e84790ee2
Contents?: true
Size: 530 Bytes
Versions: 18
Compression:
Stored size: 530 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Space < 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: 'M22 17v1c0 .5-.5 1-1 1H3c-.5 0-1-.5-1-1v-1') } end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems