Sha256: ece9d513c32f5bf67420462aee7edb09c8acbbc25edd97de8fe2f13884621ad7
Contents?: true
Size: 671 Bytes
Versions: 26
Compression:
Stored size: 671 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class SignpostBig < 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: 'M10 9H4L2 7l2-2h6') s.path(d: 'M14 5h6l2 2-2 2h-6') s.path(d: 'M10 22V4a2 2 0 1 1 4 0v18') s.path(d: 'M8 22h8') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems