Sha256: dbfd63731818d44b96b2565967399b850fa4c38298486c512e549e1be5806c05
Contents?: true
Size: 697 Bytes
Versions: 14
Compression:
Stored size: 697 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Camera < 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: 'M14.5 4h-5L7 7H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-3l-2.5-3z' ) s.circle(cx: '12', cy: '13', r: '3') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems