Sha256: d81e9d7bf51637d3e794e703a55a577361fa7ebb158212b6e23ebda1bc97d15c
Contents?: true
Size: 594 Bytes
Versions: 10
Compression:
Stored size: 594 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class AlignCenter < 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: 'M17 12H7') s.path(d: 'M19 18H5') s.path(d: 'M21 6H3') end end end end end end
Version data entries
10 entries across 10 versions & 2 rubygems