Sha256: db704be8058dffb6339504dc17e535f2d707109f6760bc59b6c12c5b0ee5d5f4
Contents?: true
Size: 638 Bytes
Versions: 10
Compression:
Stored size: 638 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class IndentDecrease < 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: 'M21 12H11') s.path(d: 'M21 18H11') s.path(d: 'M21 6H11') s.path(d: 'm7 8-4 4 4 4') end end end end end end
Version data entries
10 entries across 10 versions & 2 rubygems