Sha256: ce1f79bbfea0c63e90c00087a17f7e7937e5b3a42c696396d7527c917fe321ed
Contents?: true
Size: 606 Bytes
Versions: 14
Compression:
Stored size: 606 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Info < 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.circle(cx: '12', cy: '12', r: '10') s.path(d: 'M12 16v-4') s.path(d: 'M12 8h.01') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems