Sha256: 2f6f86f74b0694dbbf1436fcd7253d2957e506bcf78baa4a68e5c708765ad9b5
Contents?: true
Size: 609 Bytes
Versions: 14
Compression:
Stored size: 609 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Bold < 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: 'M6 12h9a4 4 0 0 1 0 8H7a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h7a4 4 0 0 1 0 8' ) end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems