Sha256: af397e33e47c68e475177a837132fcdcad5fc68035760ca0679f2654b7b8f60c
Contents?: true
Size: 664 Bytes
Versions: 26
Compression:
Stored size: 664 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class TextCursor < 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: 'M17 22h-1a4 4 0 0 1-4-4V6a4 4 0 0 1 4-4h1') s.path(d: 'M7 22h1a4 4 0 0 0 4-4v-1') s.path(d: 'M7 2h1a4 4 0 0 1 4 4v1') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems