Sha256: a9eab348a4315e30dd8e1a004dd058ce6e2201130060d841cc3e855efa123e62
Contents?: true
Size: 865 Bytes
Versions: 26
Compression:
Stored size: 865 Bytes
Contents
# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Lucide class FolderKanban < Base def view_template svg( class: classes, 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: 'M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z' ) s.path(d: 'M8 10v4') s.path(d: 'M12 10v2') s.path(d: 'M16 10v6') end end end end end end # rubocop:enable Layout/LineLength
Version data entries
26 entries across 26 versions & 2 rubygems