Sha256: bd8737a9412faab0df5c27e135affe364096e23df8ec1b2173b1844e650498db
Contents?: true
Size: 632 Bytes
Versions: 18
Compression:
Stored size: 632 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class ListCheck < 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: 'M11 18H3') s.path(d: 'm15 18 2 2 4-4') s.path(d: 'M16 12H3') s.path(d: 'M16 6H3') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems