Sha256: aef30a9a140d9baa5552c4d1073bf215da28ad0f935b5709269b62a41639eecd
Contents?: true
Size: 798 Bytes
Versions: 14
Compression:
Stored size: 798 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Film < 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.rect(width: '18', height: '18', x: '3', y: '3', rx: '2') s.path(d: 'M7 3v18') s.path(d: 'M3 7.5h4') s.path(d: 'M3 12h18') s.path(d: 'M3 16.5h4') s.path(d: 'M17 3v18') s.path(d: 'M17 7.5h4') s.path(d: 'M17 16.5h4') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems